What am I missing?
float stepSize = 0.0f; int activeCircleRadius = 10; int numSteps = 24; AiLog.v(\"init activeCircleRadius \" + activeCircleRadius + \" numStep
an integer division will give the result as 0. its 10/24 and not 10.0/24.0. you need to make one variable as double or float to get non zero answer.