toNative static method

Vector3dNative toNative(
  1. Vector3d obj
)

Implementation

static Vector3dNative toNative(Vector3d obj)  {
    return _Vector3dNativeInit(
      obj.x,
      obj.y,
      obj.z,
    );
}