當前位置: 首頁>>代碼示例>>C#>>正文


C# TgcBoundingBox.toStruct方法代碼示例

本文整理匯總了C#中TgcViewer.Utils.TgcGeometry.TgcBoundingBox.toStruct方法的典型用法代碼示例。如果您正苦於以下問題:C# TgcBoundingBox.toStruct方法的具體用法?C# TgcBoundingBox.toStruct怎麽用?C# TgcBoundingBox.toStruct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在TgcViewer.Utils.TgcGeometry.TgcBoundingBox的用法示例。


在下文中一共展示了TgcBoundingBox.toStruct方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: intersectRayAABB

 /// <summary>
 /// Indica si un Ray colisiona con un AABB.
 /// Si hay intersección devuelve True, q contiene
 /// el punto de intesección.
 /// Basado en el código de: http://www.codercorner.com/RayAABB.cpp
 /// La dirección del Ray puede estar sin normalizar.
 /// </summary>
 /// <param name="ray">Ray</param>
 /// <param name="a">AABB</param>
 /// <param name="q">Punto de intersección</param>
 /// <returns>True si hay colisión</returns>
 public static bool intersectRayAABB(TgcRay ray, TgcBoundingBox aabb, out Vector3 q)
 {
     float t;
     return TgcCollisionUtils.intersectRayAABB(ray.toStruct(), aabb.toStruct(), out q);
 }
開發者ID:faloi,項目名稱:tegece,代碼行數:16,代碼來源:TgcCollisionUtils.cs

示例2: computeFromAABB

 /// <summary>
 /// Generar OBB a partir de AABB
 /// </summary>
 /// <param name="aabb">BoundingBox</param>
 /// <returns>OBB generado</returns>
 public static TgcObb computeFromAABB(TgcBoundingBox aabb)
 {
     return TgcObb.computeFromAABB(aabb.toStruct()).toClass();
 }
開發者ID:aniPerezG,項目名稱:barbalpha,代碼行數:9,代碼來源:TgcObb.cs

示例3: testObbAABB

 /// <summary>
 /// Testear si hay olision entre un OBB y un AABB
 /// </summary>
 /// <param name="a">OBB</param>
 /// <param name="b">AABB</param>
 /// <returns>True si hay colision</returns>
 public static bool testObbAABB(TgcObb obb, TgcBoundingBox aabb)
 {
     return TgcCollisionUtils.testObbAABB(obb.toStruct(), aabb.toStruct());
 }
開發者ID:JesusHerrera,項目名稱:tgc-viewer,代碼行數:10,代碼來源:TgcCollisionUtils.cs

示例4: testSphereAABB

 /// <summary>
 /// Indica si un BoundingSphere colisiona con un BoundingBox.
 /// </summary>
 /// <param name="sphere">BoundingSphere</param>
 /// <param name="aabb">BoundingBox</param>
 /// <returns>True si hay colisión</returns>
 public static bool testSphereAABB(TgcBoundingSphere sphere, TgcBoundingBox aabb)
 {
     return TgcCollisionUtils.testSphereAABB(sphere.toStruct(), aabb.toStruct());
 }
開發者ID:JesusHerrera,項目名稱:tgc-viewer,代碼行數:10,代碼來源:TgcCollisionUtils.cs

示例5: sqDistPointAABB

 /// <summary>
 /// Calcula la mínima distancia al cuadrado entre el punto p y el BoundingBox.
 /// Si no se necesita saber el punto exacto de colisión es más ágil que utilizar closestPointAABB(). 
 /// </summary>
 /// <param name="p">Punto a testear</param>
 /// <param name="aabb">BoundingBox</param>
 /// <returns>Mínima distacia al cuadrado</returns>
 public static float sqDistPointAABB(Vector3 p, TgcBoundingBox aabb)
 {
     return TgcCollisionUtils.sqDistPointAABB(p, aabb.toStruct());
 }
開發者ID:JesusHerrera,項目名稱:tgc-viewer,代碼行數:11,代碼來源:TgcCollisionUtils.cs


注:本文中的TgcViewer.Utils.TgcGeometry.TgcBoundingBox.toStruct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。