getPoint method

  1. @override
Vector? getPoint(
  1. double t, [
  2. Vector? optionalTarget
])
override

Implementation

@override
Vector? getPoint(double t, [Vector? optionalTarget]) {
    optionalTarget ??= Vector3();
    late Vector3 optTarget;

    if(optionalTarget is Vector2){
      optTarget = Vector3(optionalTarget.x,optionalTarget.y,0);
    }
    else if(optionalTarget is Vector4){
      optTarget = Vector3(optionalTarget.x,optionalTarget.y,optionalTarget.z);
    }
    else{
      optTarget = optionalTarget as Vector3;
    }

	final point = optTarget;

	t *= math.pi * 2;

	final x = ( 2 + math.cos( 3 * t ) ) * math.cos( 2 * t );
	final y = ( 2 + math.cos( 3 * t ) ) * math.sin( 2 * t );
	final z = math.sin( 3 * t );

	return point.setValues( x, y, z ).scale( scale );

}