Projects a list of edges onto a surface defined by unordered triangles.

Namespace:  ceometric.ComputationalGeometry
Assembly:  ceometric.ComputationalGeometry (in ceometric.ComputationalGeometry.dll) Version: 2.4.0.0 (2.4.0.0)

Syntax

C#
public List<Edge> Project(
	List<Edge> edges,
	List<Triangle> surface,
	Vector3d projectionDirection
)
Visual Basic (Declaration)
Public Function Project ( _
	edges As List(Of Edge), _
	surface As List(Of Triangle), _
	projectionDirection As Vector3d _
) As List(Of Edge)
Visual C++
public:
List<Edge^>^ Project(
	List<Edge^>^ edges, 
	List<Triangle^>^ surface, 
	Vector3d^ projectionDirection
)

Parameters

edges
Type: System.Collections.Generic..::.List<(Of <(Edge>)>)
The edges to project.
surface
Type: System.Collections.Generic..::.List<(Of <(Triangle>)>)
The unordered list of triangles defining the surface.
projectionDirection
Type: ceometric.VectorGeometry..::.Vector3d
The projection direction.

Return Value

[Missing <returns> documentation for "M:ceometric.ComputationalGeometry.EdgeSurfaceProjection.Project(System.Collections.Generic.List{ceometric.VectorGeometry.Edge},System.Collections.Generic.List{ceometric.VectorGeometry.Triangle},ceometric.VectorGeometry.Vector3d)"]

See Also