• Api Documentation
  • Source Code
Search Results for

    Show / Hide Table of Contents
    • JeremyAnsel.LibNoiseShader
      • CSharpContext
      • Float3
      • Float4
      • HlslContext
      • Interpolation
      • LatLon
      • Noise3D
    • JeremyAnsel.LibNoiseShader.Builders
      • BuilderBase
      • CylinderBuilder
      • IBuilder
      • PlaneBuilder
      • SphereBuilder
    • JeremyAnsel.LibNoiseShader.IO
      • LibNoiseShaderFile
      • LibNoiseShaderFileContext
    • JeremyAnsel.LibNoiseShader.IO.FileBuilders
      • CylinderFileBuilder
      • FileBuilderBase
      • IFileBuilder
      • PlaneFileBuilder
      • SphereFileBuilder
    • JeremyAnsel.LibNoiseShader.IO.FileModules
      • AbsFileModule
      • AddFileModule
      • BillowFileModule
      • BlendFileModule
      • CacheFileModule
      • CheckerboardFileModule
      • ClampFileModule
      • ConstantFileModule
      • CurveFileModule
      • CylinderFileModule
      • DisplaceFileModule
      • ExponentFileModule
      • FileModuleBase
      • IFileModule
      • InvertFileModule
      • LineFileModule
      • MaxFileModule
      • MinFileModule
      • MultiplyFileModule
      • PerlinFileModule
      • PowerFileModule
      • RidgedMultiFileModule
      • RotatePointFileModule
      • ScaleBiasFileModule
      • ScalePointFileModule
      • SelectorFileModule
      • SphereFileModule
      • TerraceFileModule
      • TranslatePointFileModule
      • TurbulenceFileModule
      • VoronoiFileModule
    • JeremyAnsel.LibNoiseShader.IO.FileRenderers
      • BlendFileRenderer
      • FileRendererBase
      • IFileRenderer
      • ImageFileRenderer
      • NormalFileRenderer
    • JeremyAnsel.LibNoiseShader.IO.Models
      • LibNoiseShaderFileLoadContext
      • LibNoiseShaderFileWriteContext
    • JeremyAnsel.LibNoiseShader.Maps
      • ColorMap
      • MapGenerator
      • ValueMap
    • JeremyAnsel.LibNoiseShader.Models
      • CylinderModel
      • PlaneModel
      • SphereModel
    • JeremyAnsel.LibNoiseShader.Modules
      • AbsModule
      • AddModule
      • BillowModule
      • BlendModule
      • CacheModule
      • CheckerboardModule
      • ClampModule
      • ConstantModule
      • CurveModule
      • CylinderModule
      • DisplaceModule
      • ExponentModule
      • IModule
      • InvertModule
      • LineModule
      • MaxModule
      • MinModule
      • ModuleBase
      • MultiplyModule
      • PerlinModule
      • PowerModule
      • RidgedMultiModule
      • RotatePointModule
      • ScaleBiasModule
      • ScalePointModule
      • SelectorModule
      • SphereModule
      • TerraceModule
      • TranslatePointModule
      • TurbulenceModule
      • VoronoiModule
    • JeremyAnsel.LibNoiseShader.Renderers
      • BlendRenderer
      • IRenderer
      • ImageRenderer
      • NormalRenderer
      • RendererBase

    Struct Float3

    Implements
    IEquatable<Float3>
    Inherited Members
    object.Equals(object, object)
    object.GetType()
    object.ReferenceEquals(object, object)
    Namespace: JeremyAnsel.LibNoiseShader
    Assembly: JeremyAnsel.LibNoiseShader.dll
    Syntax
    public struct Float3 : IEquatable<Float3>

    Constructors

    | Edit this page View Source

    Float3(float, float, float)

    Declaration
    public Float3(float x, float y, float z)
    Parameters
    Type Name Description
    float x
    float y
    float z

    Fields

    | Edit this page View Source

    X

    Declaration
    public float X
    Field Value
    Type Description
    float
    | Edit this page View Source

    Y

    Declaration
    public float Y
    Field Value
    Type Description
    float
    | Edit this page View Source

    Z

    Declaration
    public float Z
    Field Value
    Type Description
    float

    Methods

    | Edit this page View Source

    Add(Float3, Float3)

    Declaration
    public static Float3 Add(Float3 left, Float3 right)
    Parameters
    Type Name Description
    Float3 left
    Float3 right
    Returns
    Type Description
    Float3
    | Edit this page View Source

    Dot(Float3, Float3)

    Declaration
    public static float Dot(Float3 x, Float3 y)
    Parameters
    Type Name Description
    Float3 x
    Float3 y
    Returns
    Type Description
    float
    | Edit this page View Source

    Equals(Float3)

    Indicates whether the current object is equal to another object of the same type.

    Declaration
    public bool Equals(Float3 other)
    Parameters
    Type Name Description
    Float3 other

    An object to compare with this object.

    Returns
    Type Description
    bool

    true if the current object is equal to the other parameter; otherwise, false.

    | Edit this page View Source

    Equals(object?)

    Indicates whether this instance and a specified object are equal.

    Declaration
    public override bool Equals(object? obj)
    Parameters
    Type Name Description
    object obj

    The object to compare with the current instance.

    Returns
    Type Description
    bool

    true if obj and this instance are the same type and represent the same value; otherwise, false.

    Overrides
    ValueType.Equals(object)
    | Edit this page View Source

    Floor(Float3)

    Declaration
    public static Float3 Floor(Float3 x)
    Parameters
    Type Name Description
    Float3 x
    Returns
    Type Description
    Float3
    | Edit this page View Source

    GetHashCode()

    Returns the hash code for this instance.

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int

    A 32-bit signed integer that is the hash code for this instance.

    Overrides
    ValueType.GetHashCode()
    | Edit this page View Source

    Max(Float3, float)

    Declaration
    public static Float3 Max(Float3 x, float y)
    Parameters
    Type Name Description
    Float3 x
    float y
    Returns
    Type Description
    Float3
    | Edit this page View Source

    Min(Float3, float)

    Declaration
    public static Float3 Min(Float3 x, float y)
    Parameters
    Type Name Description
    Float3 x
    float y
    Returns
    Type Description
    Float3
    | Edit this page View Source

    Multiply(Float3, Float3)

    Declaration
    public static Float3 Multiply(Float3 left, Float3 right)
    Parameters
    Type Name Description
    Float3 left
    Float3 right
    Returns
    Type Description
    Float3
    | Edit this page View Source

    Step(Float3, Float3)

    Declaration
    public static Float3 Step(Float3 y, Float3 x)
    Parameters
    Type Name Description
    Float3 y
    Float3 x
    Returns
    Type Description
    Float3
    | Edit this page View Source

    Subtract(Float3, Float3)

    Declaration
    public static Float3 Subtract(Float3 left, Float3 right)
    Parameters
    Type Name Description
    Float3 left
    Float3 right
    Returns
    Type Description
    Float3
    | Edit this page View Source

    ToString()

    Returns the fully qualified type name of this instance.

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    The fully qualified type name.

    Overrides
    ValueType.ToString()

    Operators

    | Edit this page View Source

    operator +(Float3, Float3)

    Declaration
    public static Float3 operator +(Float3 x, Float3 y)
    Parameters
    Type Name Description
    Float3 x
    Float3 y
    Returns
    Type Description
    Float3
    | Edit this page View Source

    operator +(Float3, float)

    Declaration
    public static Float3 operator +(Float3 x, float y)
    Parameters
    Type Name Description
    Float3 x
    float y
    Returns
    Type Description
    Float3
    | Edit this page View Source

    operator +(float, Float3)

    Declaration
    public static Float3 operator +(float y, Float3 x)
    Parameters
    Type Name Description
    float y
    Float3 x
    Returns
    Type Description
    Float3
    | Edit this page View Source

    operator ==(Float3, Float3)

    Declaration
    public static bool operator ==(Float3 left, Float3 right)
    Parameters
    Type Name Description
    Float3 left
    Float3 right
    Returns
    Type Description
    bool
    | Edit this page View Source

    operator !=(Float3, Float3)

    Declaration
    public static bool operator !=(Float3 left, Float3 right)
    Parameters
    Type Name Description
    Float3 left
    Float3 right
    Returns
    Type Description
    bool
    | Edit this page View Source

    operator *(Float3, Float3)

    Declaration
    public static Float3 operator *(Float3 x, Float3 y)
    Parameters
    Type Name Description
    Float3 x
    Float3 y
    Returns
    Type Description
    Float3
    | Edit this page View Source

    operator *(Float3, float)

    Declaration
    public static Float3 operator *(Float3 x, float y)
    Parameters
    Type Name Description
    Float3 x
    float y
    Returns
    Type Description
    Float3
    | Edit this page View Source

    operator *(float, Float3)

    Declaration
    public static Float3 operator *(float y, Float3 x)
    Parameters
    Type Name Description
    float y
    Float3 x
    Returns
    Type Description
    Float3
    | Edit this page View Source

    operator -(Float3, Float3)

    Declaration
    public static Float3 operator -(Float3 x, Float3 y)
    Parameters
    Type Name Description
    Float3 x
    Float3 y
    Returns
    Type Description
    Float3
    | Edit this page View Source

    operator -(Float3, float)

    Declaration
    public static Float3 operator -(Float3 x, float y)
    Parameters
    Type Name Description
    Float3 x
    float y
    Returns
    Type Description
    Float3
    | Edit this page View Source

    operator -(float, Float3)

    Declaration
    public static Float3 operator -(float y, Float3 x)
    Parameters
    Type Name Description
    float y
    Float3 x
    Returns
    Type Description
    Float3

    Implements

    IEquatable<T>
    • Edit this page
    • View Source
    In this article
    Back to top Copyright (c) 2022 Jérémy Ansel