예제 #1
0
파일: SdfUtils.cs 프로젝트: KIT-ISAS/iviz
 public static Vector3 Ros2Unity([NotNull] this Sdf.Vector3d v)
 {
     return(new Vector3((float)v.X, (float)v.Y, (float)v.Z).Ros2Unity());
 }
예제 #2
0
파일: SdfUtils.cs 프로젝트: KIT-ISAS/iviz
 static Quaternion ToQuaternion([NotNull] this Sdf.Vector3d v)
 {
     return(new Vector3((float)v.X, (float)v.Y, (float)v.Z).RosRpy2Unity());
 }