Show / Hide Table of Contents

    Class WeldSegment

    WeldSegment represents the position and orientation in the model of a logical segment of a weld. The segment may be stitched, so the weld between the two points of the segment may not be continuous.

    Inheritance
    object
    WeldSegment
    Inherited Members
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: DesignData.SDS2.Model
    Assembly: DesignData.SDS2.Model.dll
    Syntax
    public class WeldSegment

    Properties

    p1

    End point of a logical weld segment.

    Declaration
    public Point3D p1 { get; set; }
    Property Value
    Type Description
    Point3D

    p2

    End point of a logical weld segment.

    Declaration
    public Point3D p2 { get; set; }
    Property Value
    Type Description
    Point3D

    Methods

    Dispose(bool)

    WeldSegment represents the position and orientation in the model of a logical segment of a weld. The segment may be stitched, so the weld between the two points of the segment may not be continuous.

    Declaration
    protected virtual void Dispose(bool disposing)
    Parameters
    Type Name Description
    bool disposing

    ~WeldSegment()

    WeldSegment represents the position and orientation in the model of a logical segment of a weld. The segment may be stitched, so the weld between the two points of the segment may not be continuous.

    Declaration
    protected ~WeldSegment()
    Back to top