DrawCylinderWires method
void
DrawCylinderWires()
override
Draw a cylinder/cone wires
Implementation
@override
void DrawCylinderWires(
Vector3D position,
double radiusTop,
double radiusBottom,
double height,
int slices,
ColorD color,
) => _ffi.DrawCylinderWires(
$.Vector3$.Ref1(position).asNativePointer<Vector3C>().ref,
radiusTop,
radiusBottom,
height,
slices,
$.Color$.Ref1(color).asNativePointer<ColorC>().ref,
);