BRIDGES
  • Articles
  • BRIDGES
Search Results for

    Show / Hide Table of Contents
    • Settings
    • LinearAlgebra
      • Vectors
        • DenseVector
        • SparseVector
        • Vector
      • Factorisation
        • SparseQR
      • Matrices
        • DenseMatrix
        • Matrix
        • SparseMatrix
        • Sparse
          • CompressedColumn
          • CompressedRow
        • Storage
          • DictionaryOfKeys
    • Algebra
      • Measure
        • IDotProduct<TSelf, TValue>
        • IMetric<TSelf>
        • INorm<TSelf>
      • Sets
        • IGroupAction<TSelf, TValue>
      • Fundamentals
        • IAddable<T>
    • Solvers
      • GuidedProjection
        • Energy
        • GuidedProjectionAlgorithm
        • LinearisedConstraint
        • QuadraticConstraint
        • VariableSet
        • EnergyTypes
          • SegmentOrthogonality
          • SegmentParallelity
        • Interfaces
          • IEnergyType
          • ILinearisedConstraintType
          • IQuadraticConstraintType
        • QuadraticConstraintTypes
          • CoherentLength
          • LowerBound
          • UpperBound
          • VectorLength
    • Arithmetic
      • Polynomials
        • Multivariate
          • Monomial
          • Polynomial
        • Univariate
          • Polynomial
          • Specials
            • Bernstein
            • BSpline
      • Numbers
        • Complex
        • Quaternion
        • Real
    • Geometry
      • Euclidean3D
        • Basis
        • BSplineCurve
        • BSplineSurface
        • Circle
        • Frame
        • Line
        • NurbsCurve
        • NurbsSurface
        • Plane
        • Point
        • Polyline
        • Ray
        • Segment
        • Sphere
        • Vector
      • Kernel
        • BSplineCurve<TPoint>
        • BSplineSurface<TPoint>
        • CurveParameterFormat
        • IGeometricallyEquatable<T>
      • Projective3D
        • Point
    • DataStructures
      • PolyhedralMeshes
        • IEdge<TPosition>
        • IFace<TPosition>
        • IMesh<TPosition>
        • IVertex<TPosition>
        • FaceVertexMesh
          • Edge<TPosition>
          • Face<TPosition>
          • Mesh<TPosition>
          • Vertex<TPosition>
        • Abstract
          • Edge<TPosition, TVertex, TEdge, TFace>
          • Face<TPosition, TVertex, TEdge, TFace>
          • Mesh<TPosition, TVertex, TEdge, TFace>
          • Vertex<TPosition, TVertex, TEdge, TFace>
        • HalfedgeMesh
          • Edge<TPosition>
          • Face<TPosition>
          • Halfedge<TPosition>
          • Mesh<TPosition>
          • Vertex<TPosition>

    Class BSplineCurve

    Class defining a B-Spline curve in three-dimensional euclidean space.

    Inheritance
    Object
    BSplineCurve<Point>
    BSplineCurve
    Inherited Members
    BSplineCurve<Point>._knotVector
    BSplineCurve<Point>._controlPoints
    BSplineCurve<Point>.IsClosed
    BSplineCurve<Point>.StartPoint
    BSplineCurve<Point>.EndPoint
    BSplineCurve<Point>.DomainStart
    BSplineCurve<Point>.DomainEnd
    BSplineCurve<Point>.Degree
    BSplineCurve<Point>.KnotCount
    BSplineCurve<Point>.PointCount
    BSplineCurve<Point>.Knot(Int32)
    BSplineCurve<Point>.ControlPoint(Int32)
    BSplineCurve<Point>.Length()
    BSplineCurve<Point>.Flip()
    BSplineCurve<Point>.PointAt(Double, CurveParameterFormat)
    BSplineCurve<Point>.SetControlPoints(IEnumerable<Point>)
    BSplineCurve<Point>.SetKnotVector(IEnumerable<Double>)
    BSplineCurve<Point>.SetUniformKnotVector(Double, Double, Int32, Int32)
    Namespace: BRIDGES.Geometry.Euclidean3D
    Assembly: BRIDGES.dll
    Syntax
    public class BSplineCurve : BSplineCurve<Point>

    Constructors

    | Improve this Doc View Source

    BSplineCurve(Int32, IEnumerable<Point>)

    Initialises a new instance of BSplineCurve class.

    Declaration
    public BSplineCurve(int degree, IEnumerable<Point> controlPoints)
    Parameters
    Type Name Description
    Int32 degree

    Degree of the interpolating BSpline polynomial basis.

    IEnumerable<Point> controlPoints

    Control points of the BSplineCurve.

    | Improve this Doc View Source

    BSplineCurve(Int32, IEnumerable<Double>, IEnumerable<Point>)

    Initialises a new instance of BSplineCurve class by defining its fields.

    Declaration
    public BSplineCurve(int degree, IEnumerable<double> knotVector, IEnumerable<Point> controlPoints)
    Parameters
    Type Name Description
    Int32 degree

    Degree of the interpolating BSpline polynomial basis.

    IEnumerable<Double> knotVector

    Knot vector of the interpolating BSpline polynomial basis.

    IEnumerable<Point> controlPoints

    Control points of the BSplineCurve.

    • Improve this Doc
    • View Source
    In This Article
    Back to top By ENPC and the Build'In Platform