DrawPoint3D method
Draw a point in 3D space, actually a small line
Implementation
@override
void DrawPoint3D(
Vector3D position,
ColorD color,
) => _ffi.DrawPoint3D(
$.Vector3$.Ref1(position).asNativePointer<Vector3C>().ref,
$.Color$.Ref1(color).asNativePointer<ColorC>().ref,
);