DrawCylinderEx method
void
DrawCylinderEx()
override
Draw a cylinder with base at startPos and top at endPos
Implementation
@override
void DrawCylinderEx(
Vector3D startPos,
Vector3D endPos,
double startRadius,
double endRadius,
int sides,
ColorD color,
) => _ffi.DrawCylinderEx(
$.Vector3$.Ref1(startPos).asNativePointer<Vector3C>().ref,
$.Vector3$.Ref2(endPos).asNativePointer<Vector3C>().ref,
startRadius,
endRadius,
sides,
$.Color$.Ref1(color).asNativePointer<ColorC>().ref,
);