2021 Class
Changes 0
C

PolymeshFacet

Description:
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.
Inheritance Hierarchy:
System.Object
  Autodesk.Revit.DB.PolymeshFacet
public class PolymeshFacet
Name Return Type Description
C PolymeshFacet(Int32, Int32, Int32) None Creates a PolymeshFacet with the supplied vertices.
Name Return Type Description
M GetVertices() IList<int> Returns the three vertices that define this facet
M ToString() string Returns formatted string showing (V1, V2, V3) with values formatted as regular integers
Name Return Type Description
P IsValidObject bool Specifies whether the .NET object represents a valid Revit entity.
P V1 int The first vertex of the facet
P V2 int The second vertex of the facet
P V3 int The third vertex of the facet