mg6maciej
03/15/2017, 12:11 PMelect
03/15/2017, 1:50 PMFloat.rad
to convert deg->rad, Float.sin
and .cos
, etc.. do you consider it bad?mg6maciej
03/15/2017, 1:51 PMx.sin
not readable as simply sin(x)
.elect
03/15/2017, 2:22 PMmg6maciej
03/15/2017, 3:28 PMnow
is a good example, but anything non-purely functional really, like using Random().newInt()
inside such functions.minivac
03/17/2017, 10:38 AMsin(x)
makes more sense for pure functions because thats the default mathematical syntax, you never see x.sin
out thereelect
03/22/2017, 3:01 PM