Click or drag to resize

Polyeder Constructor (UInt32, IReadOnlyListPoint, IReadOnlyListFace)

[This is preliminary documentation and is subject to change.]

Create a polyeder with the provided color. It is constructed using existing vertices and faces data. Removes duplicate vertices and updates indexes used in faces accordingly.

Namespace:  Infrastructure.Geometry
Assembly:  Infrastructure.Geometry (in Infrastructure.Geometry.dll) Version: 1.13.0+Branch.master.Sha.d583fc64569355d188a9c0818d257b6d0d3e1339
Syntax
C#
public Polyeder(
	uint color,
	IReadOnlyList<Point> existingVertices,
	IReadOnlyList<Face> existingFaces
)

Parameters

color
Type: SystemUInt32
The color ARGB value of the polyeder
existingVertices
Type: System.Collections.GenericIReadOnlyListPoint
The list of vertices
existingFaces
Type: System.Collections.GenericIReadOnlyListFace
The list of faces
See Also