Show / Hide Table of Contents

    Struct NppPointPolar

    2D Polar Point.

    Inherited Members
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetType()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: ManagedCuda.NPP
    Assembly: NPP.dll
    Syntax
    public struct NppPointPolar

    Constructors

    | Improve this Doc View Source

    NppPointPolar(Single, Single)

    Non-default constructor

    Declaration
    public NppPointPolar(float aRho, float aTheta)
    Parameters
    Type Name Description
    System.Single aRho
    System.Single aTheta

    Fields

    | Improve this Doc View Source

    rho

    rho-coordinate.

    Declaration
    public float rho
    Field Value
    Type Description
    System.Single
    | Improve this Doc View Source

    theta

    theta-coordinate.

    Declaration
    public float theta
    Field Value
    Type Description
    System.Single

    Methods

    | Improve this Doc View Source

    Add(NppPointPolar, NppPointPolar)

    per element Add

    Declaration
    public static NppPointPolar Add(NppPointPolar src, NppPointPolar value)
    Parameters
    Type Name Description
    NppPointPolar src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Add(NppPointPolar, Single)

    per element Add

    Declaration
    public static NppPointPolar Add(NppPointPolar src, float value)
    Parameters
    Type Name Description
    NppPointPolar src
    System.Single value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Add(Single, NppPointPolar)

    per element Add

    Declaration
    public static NppPointPolar Add(float src, NppPointPolar value)
    Parameters
    Type Name Description
    System.Single src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Divide(NppPointPolar, NppPointPolar)

    per element Divide

    Declaration
    public static NppPointPolar Divide(NppPointPolar src, NppPointPolar value)
    Parameters
    Type Name Description
    NppPointPolar src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Divide(NppPointPolar, Single)

    per element Divide

    Declaration
    public static NppPointPolar Divide(NppPointPolar src, float value)
    Parameters
    Type Name Description
    NppPointPolar src
    System.Single value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Divide(Single, NppPointPolar)

    per element Divide

    Declaration
    public static NppPointPolar Divide(float src, NppPointPolar value)
    Parameters
    Type Name Description
    System.Single src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Equals(NppPointPolar)

    Declaration
    public bool Equals(NppPointPolar value)
    Parameters
    Type Name Description
    NppPointPolar value
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Equals(Object)

    Declaration
    public override bool Equals(object obj)
    Parameters
    Type Name Description
    System.Object obj
    Returns
    Type Description
    System.Boolean
    Overrides
    System.ValueType.Equals(System.Object)
    | Improve this Doc View Source

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    System.Int32
    Overrides
    System.ValueType.GetHashCode()
    | Improve this Doc View Source

    Multiply(NppPointPolar, NppPointPolar)

    per element Multiply

    Declaration
    public static NppPointPolar Multiply(NppPointPolar src, NppPointPolar value)
    Parameters
    Type Name Description
    NppPointPolar src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Multiply(NppPointPolar, Single)

    per element Multiply

    Declaration
    public static NppPointPolar Multiply(NppPointPolar src, float value)
    Parameters
    Type Name Description
    NppPointPolar src
    System.Single value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Multiply(Single, NppPointPolar)

    per element Multiply

    Declaration
    public static NppPointPolar Multiply(float src, NppPointPolar value)
    Parameters
    Type Name Description
    System.Single src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Subtract(NppPointPolar, NppPointPolar)

    per element Substract

    Declaration
    public static NppPointPolar Subtract(NppPointPolar src, NppPointPolar value)
    Parameters
    Type Name Description
    NppPointPolar src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Subtract(NppPointPolar, Single)

    per element Substract

    Declaration
    public static NppPointPolar Subtract(NppPointPolar src, float value)
    Parameters
    Type Name Description
    NppPointPolar src
    System.Single value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Subtract(Single, NppPointPolar)

    per element Substract

    Declaration
    public static NppPointPolar Subtract(float src, NppPointPolar value)
    Parameters
    Type Name Description
    System.Single src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    ToString()

    Declaration
    public override string ToString()
    Returns
    Type Description
    System.String
    Overrides
    System.ValueType.ToString()

    Operators

    | Improve this Doc View Source

    Addition(NppPointPolar, NppPointPolar)

    per element

    Declaration
    public static NppPointPolar operator +(NppPointPolar src, NppPointPolar value)
    Parameters
    Type Name Description
    NppPointPolar src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Addition(NppPointPolar, Single)

    per element

    Declaration
    public static NppPointPolar operator +(NppPointPolar src, float value)
    Parameters
    Type Name Description
    NppPointPolar src
    System.Single value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Addition(Single, NppPointPolar)

    per element

    Declaration
    public static NppPointPolar operator +(float src, NppPointPolar value)
    Parameters
    Type Name Description
    System.Single src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Division(NppPointPolar, NppPointPolar)

    per element

    Declaration
    public static NppPointPolar operator /(NppPointPolar src, NppPointPolar value)
    Parameters
    Type Name Description
    NppPointPolar src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Division(NppPointPolar, Single)

    per element

    Declaration
    public static NppPointPolar operator /(NppPointPolar src, float value)
    Parameters
    Type Name Description
    NppPointPolar src
    System.Single value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Division(Single, NppPointPolar)

    per element

    Declaration
    public static NppPointPolar operator /(float src, NppPointPolar value)
    Parameters
    Type Name Description
    System.Single src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Equality(NppPointPolar, NppPointPolar)

    per element

    Declaration
    public static bool operator ==(NppPointPolar src, NppPointPolar value)
    Parameters
    Type Name Description
    NppPointPolar src
    NppPointPolar value
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Inequality(NppPointPolar, NppPointPolar)

    per element

    Declaration
    public static bool operator !=(NppPointPolar src, NppPointPolar value)
    Parameters
    Type Name Description
    NppPointPolar src
    NppPointPolar value
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Multiply(NppPointPolar, NppPointPolar)

    per element

    Declaration
    public static NppPointPolar operator *(NppPointPolar src, NppPointPolar value)
    Parameters
    Type Name Description
    NppPointPolar src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Multiply(NppPointPolar, Single)

    per element

    Declaration
    public static NppPointPolar operator *(NppPointPolar src, float value)
    Parameters
    Type Name Description
    NppPointPolar src
    System.Single value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Multiply(Single, NppPointPolar)

    per element

    Declaration
    public static NppPointPolar operator *(float src, NppPointPolar value)
    Parameters
    Type Name Description
    System.Single src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Subtraction(NppPointPolar, NppPointPolar)

    per element

    Declaration
    public static NppPointPolar operator -(NppPointPolar src, NppPointPolar value)
    Parameters
    Type Name Description
    NppPointPolar src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Subtraction(NppPointPolar, Single)

    per element

    Declaration
    public static NppPointPolar operator -(NppPointPolar src, float value)
    Parameters
    Type Name Description
    NppPointPolar src
    System.Single value
    Returns
    Type Description
    NppPointPolar
    | Improve this Doc View Source

    Subtraction(Single, NppPointPolar)

    per element

    Declaration
    public static NppPointPolar operator -(float src, NppPointPolar value)
    Parameters
    Type Name Description
    System.Single src
    NppPointPolar value
    Returns
    Type Description
    NppPointPolar
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX