• 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 PointCloud

Represents a collection of points with a color assigned to them. TODO: This is only a basic data structure for now.

Inheritance
System.Object
PointCloud
Namespace: Paramdigma.Core.Spatial
Assembly: Paramdigma.Core.dll
Syntax
public class PointCloud : IList<PointCloudMember>

Constructors

| Improve this Doc View Source

PointCloud(List<PointCloudMember>)

Constructs a new point-cloud from a list of point cloud members..

Declaration
public PointCloud(List<PointCloudMember> points)
Parameters
Type Name Description
List<PointCloudMember> points

List of point-cloud members.

Properties

| Improve this Doc View Source

Count

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

IsReadOnly

Declaration
public bool IsReadOnly { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Item[Int32]

Declaration
public PointCloudMember this[int index] { get; set; }
Parameters
Type Name Description
System.Int32 index
Property Value
Type Description
PointCloudMember

Methods

| Improve this Doc View Source

Add(PointCloudMember)

Declaration
public void Add(PointCloudMember item)
Parameters
Type Name Description
PointCloudMember item
| Improve this Doc View Source

Clear()

Declaration
public void Clear()
| Improve this Doc View Source

Contains(PointCloudMember)

Declaration
public bool Contains(PointCloudMember item)
Parameters
Type Name Description
PointCloudMember item
Returns
Type Description
System.Boolean
| Improve this Doc View Source

CopyTo(PointCloudMember[], Int32)

Declaration
public void CopyTo(PointCloudMember[] array, int arrayIndex)
Parameters
Type Name Description
PointCloudMember[] array
System.Int32 arrayIndex
| Improve this Doc View Source

GetEnumerator()

Declaration
public IEnumerator<PointCloudMember> GetEnumerator()
Returns
Type Description
IEnumerator<PointCloudMember>
| Improve this Doc View Source

IndexOf(PointCloudMember)

Declaration
public int IndexOf(PointCloudMember item)
Parameters
Type Name Description
PointCloudMember item
Returns
Type Description
System.Int32
| Improve this Doc View Source

Insert(Int32, PointCloudMember)

Declaration
public void Insert(int index, PointCloudMember item)
Parameters
Type Name Description
System.Int32 index
PointCloudMember item
| Improve this Doc View Source

Remove(PointCloudMember)

Declaration
public bool Remove(PointCloudMember item)
Parameters
Type Name Description
PointCloudMember item
Returns
Type Description
System.Boolean
| Improve this Doc View Source

RemoveAt(Int32)

Declaration
public void RemoveAt(int index)
Parameters
Type Name Description
System.Int32 index
  • Improve this Doc
  • View Source
Back to top Generated by DocFX