* <code>true</code> to also generate a reverse look up table. This is only required if you plan to use
* the {@link ComplexSpatialController.RepeatType#CYCLE} repeat type.
* @see ArcLengthTable#generate(int, boolean)
*/
public void generateArcLengths(final int step, final boolean reverse) {
_arcLengths = new ArcLengthTable(getCurve());
_arcLengths.generate(step, false);
if (reverse) {
_arcLengthsReverse = new ArcLengthTable(getCurve());
_arcLengthsReverse.generate(step, true);
}
}