**// NullableVector3 클래스
// _hasValue가 true면 _value 리턴
// _hasValue가 false면 null 리턴
public Vector3? ToNullable() => _hasValue ? _value : (Vector3?)null;**

image.png