fromNative static method
Implementation
static Vector3d fromNative(Vector3dNative native, {bool takeOwnership = true}) {
return Vector3d(
native.x,
native.y,
native.z,
);
}
static Vector3d fromNative(Vector3dNative native, {bool takeOwnership = true}) {
return Vector3d(
native.x,
native.y,
native.z,
);
}