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 SegmentOrthogonality

    Energy enforcing a segment defined from two point variables, pi and pj, to be orthogonal to a constant direction v.

    Inheritance
    Object
    SegmentOrthogonality
    Implements
    IEnergyType
    Namespace: BRIDGES.Solvers.GuidedProjection.EnergyTypes
    Assembly: BRIDGES.dll
    Syntax
    public class SegmentOrthogonality : object, IEnergyType
    Remarks

    The vector xReduced = [pi, pj].

    Constructors

    | Improve this Doc View Source

    SegmentOrthogonality(Double[])

    Initialises a new instance of the SegmentOrthogonality class.

    Declaration
    public SegmentOrthogonality(double[] coordinates)
    Parameters
    Type Name Description
    Double[] coordinates

    Coordinates of the target direction vector.

    Remarks

    The vector xReduced = [pi, pj].

    Properties

    | Improve this Doc View Source

    LocalKi

    Gets the local vector Ki of the energy.

    Declaration
    public SparseVector LocalKi { get; }
    Property Value
    Type Description
    SparseVector
    Remarks

    The vector xReduced = [pi, pj].

    | Improve this Doc View Source

    Si

    Gets the scalar value Si of the energy.

    Declaration
    public double Si { get; }
    Property Value
    Type Description
    Double
    Remarks

    The vector xReduced = [pi, pj].

    Implements

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