PolymeshFacet
Description:
A class representing one triangular piece - a facet - in a polymesh topology.
A class representing one triangular piece - a facet - in a polymesh topology.
Remarks:
It can also be used to create TopographySurface. Each facet is defined by indices of three vertices of the polymesh.
It can also be used to create TopographySurface. Each facet is defined by indices of three vertices of the polymesh.
Inheritance Hierarchy:
System.Object
Autodesk.Revit.DB.PolymeshFacet
System.Object
Autodesk.Revit.DB.PolymeshFacet
public class PolymeshFacet
| Name | Return Type | Description |
|---|---|---|
| PolymeshFacet(Int32, Int32, Int32) | None | Creates a PolymeshFacet with the supplied vertices. |
| Name | Return Type | Description |
|---|---|---|
| GetVertices() | IList<int> | Returns the three vertices that define this facet |
| ToString() | string | Returns formatted string showing (V1, V2, V3) with values formatted as regular integers |
| Name | Return Type | Description |
|---|---|---|
| IsValidObject | bool | Specifies whether the .NET object represents a valid Revit entity. |
| V1 | int | The first vertex of the facet |
| V2 | int | The second vertex of the facet |
| V3 | int | The third vertex of the facet |