Show / Hide Table of Contents

    Class VectorExpression

    A collection of expressions describing the X, Y, and Z coordinates of a vertex.

    Inheritance
    System.Object
    VectorExpression
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: Elements.Geometry.Profiles
    Assembly: Hypar.Elements.dll
    Syntax
    public class VectorExpression

    Constructors

    VectorExpression(String, String, String)

    Create a vector expression.

    Declaration
    [JsonConstructor]
    public VectorExpression(string x = null, string y = null, string z = null)
    Parameters
    Type Name Description
    System.String x

    The expression of the X coordinate of the vector.

    System.String y

    The expression of the Y coordinate of the vector.

    System.String z

    The expression of the Z coordinate of the vector.

    Properties

    X

    The expression of the X coordinate of the vector.

    Declaration
    public string X { get; set; }
    Property Value
    Type Description
    System.String

    Y

    The expression of the Y coordinate of the vector.

    Declaration
    public string Y { get; set; }
    Property Value
    Type Description
    System.String

    Z

    The expression of the Z coordinate of the vector.

    Declaration
    public string Z { get; set; }
    Property Value
    Type Description
    System.String