• Articles
  • Api Documentation
Show / Hide Table of Contents
  • Paramdigma.Core
    • Convert
    • Intersect3D
    • Intersect3D.LineLineIntersectionResult
    • Intersect3D.LineLineIntersectionStatus
    • Intersect3D.LinePlaneIntersectionStatus
    • Intersect3D.RayFacePerimeterIntersectionStatus
    • Settings
  • Paramdigma.Core.Collections
    • Interval
    • Matrix<T>
  • Paramdigma.Core.Curves
    • Geodesics
    • LevelSets
  • Paramdigma.Core.Exceptions
    • UnsetGeometryException
  • Paramdigma.Core.Extensions
    • Lists
  • Paramdigma.Core.Geometry
    • BaseCurve
    • BasePoint
    • Box
    • Circle
    • Cylinder
    • Delaunay
    • InvalidCurveException
    • Line
    • Line2d
    • Mesh
    • MeshCorner
    • MeshEdge
    • MeshFace
    • MeshGeometry
    • MeshHalfEdge
    • MeshPoint
    • MeshTopology
    • MeshVertex
    • NurbsCurve
    • NurbsSurface
    • Plane
    • Point2d
    • Point3d
    • Point4d
    • Polyline
    • Polyline2d
    • Ray
    • Ray2d
    • Rectangle2d
    • Sphere
    • Torus
    • Vector2d
    • Vector3d
    • VectorNd
  • Paramdigma.Core.Geometry.Interfaces
    • ICurve
    • ISurface
    • IVector
  • Paramdigma.Core.IO
    • CsvReader
    • CsvWritter
    • OBJMeshData
    • ObjReader
    • ObjWritter
    • OffMeshData
    • OffReader
    • OffResult
    • OffWriter
  • Paramdigma.Core.LinearAlgebra
    • Complex
    • LeastSquaresLinearFit
    • Triplet
    • TripletData
  • Paramdigma.Core.Optimization
    • GradientDescent
    • GradientDescent.FitnessFunction
    • GradientDescentOptions
    • GradientDescentResult
    • KMeansCluster
    • KMeansClustering
    • KMeansClustering.IterationCompletedEventArgs
  • Paramdigma.Core.Spatial
    • DelaunayEdge
    • DelaunayPoint
    • DelaunayTriangle
    • Octree
    • PointCloud
    • PointCloudMember
    • QuadTree

Class MeshPoint

Represents a point on a mesh as it's face index and barycentric coordinatees.

Inheritance
System.Object
MeshPoint
Namespace: Paramdigma.Core.Geometry
Assembly: Paramdigma.Core.dll
Syntax
public class MeshPoint : object

Constructors

| Improve this Doc View Source

MeshPoint(MeshFace, Point3d)

Initializes a new instance of the MeshPoint class.

Declaration
public MeshPoint(MeshFace face, Point3d point)
Parameters
Type Name Description
MeshFace face

Mesh face.

Point3d point

3D Point.

| Improve this Doc View Source

MeshPoint(Int32, Double, Double, Double)

Initializes a new instance of the MeshPoint class.

Declaration
public MeshPoint(int faceIndex, double u, double v, double w)
Parameters
Type Name Description
System.Int32 faceIndex

Face Index.

System.Double u

U coordinate.

System.Double v

V coordinate.

System.Double w

Z coordinate.

Properties

| Improve this Doc View Source

FaceIndex

Gets or sets the index of the face this point lies in.

Declaration
public int FaceIndex { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

U

Gets or sets the U coordinate at the face.

Declaration
public double U { get; set; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

V

Gets or sets the V coordinate at the face.

Declaration
public double V { get; set; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

W

Gets or sets the W coordinate at the face.

Declaration
public double W { get; set; }
Property Value
Type Description
System.Double

Methods

| Improve this Doc View Source

ToString()

Converts a mesh point into a string.

Declaration
public override string ToString()
Returns
Type Description
System.String

String representation of the mesh point.

  • Improve this Doc
  • View Source
Back to top Generated by DocFX