Class Geodesics
Static class to compute geodeesics on triangular meshes.
Inheritance
System.Object
Geodesics
Namespace: Paramdigma.Core.Curves
Assembly: Paramdigma.Core.dll
Syntax
public static class Geodesics : object
Methods
| Improve this Doc View SourceStartDir(MeshPoint, Vector3d, Mesh, Int32, out List<Point3d>)
Computes a geodesic on a mesh given a starting point and an initial direction. Returns true if successfull and false if something went wrong.
Declaration
public static bool StartDir(MeshPoint meshPoint, Vector3d vector, Mesh mesh, int maxIter, out List<Point3d> geodesic)
Parameters
Type | Name | Description |
---|---|---|
MeshPoint | meshPoint | Point. |
Vector3d | vector | Direction. |
Mesh | mesh | Mesh. |
System.Int32 | maxIter | Maximum iterations. |
List<Point3d> | geodesic | Geodesic curves. |
Returns
Type | Description |
---|---|
System.Boolean | True if successful. |