Search Results for

    Show / Hide Table of Contents

    Enum TwoDimensionalArray

    Namespace: Acoustics.Shared
    Assembly: Acoustics.Shared.dll
    Syntax
    public enum TwoDimensionalArray

    Fields

    Name Description
    None

    Store/Read values in the same orientation as they are in memory

    1 | 2 --> 1 | 2
    3 | 4     3 | 4
    5 | 6     5 | 6
    Rotate90AntiClockWise

    This transform should be equivalent to RotateMatrix90DegreesClockwise 1 | 2 --> 2 | 4 | 6 3 | 4 1 | 3 | 5 5 | 6

    Rotate90ClockWise

    This transform should be equivalent to RotateMatrix90DegreesClockwise 1 | 2 --> 5 | 3 | 1 3 | 4 6 | 4 | 2 5 | 6

    Transpose

    This is effectively a transpose

    1 | 2 --> 1 | 3 | 5
    3 | 4     2 | 4 | 6
    5 | 6

    Extension Methods

    ObjectExtensions.NotNull()
    ObjectExtensions.AsArray<TwoDimensionalArray>()
    ObjectExtensions.AsList<TwoDimensionalArray>()
    ObjectExtensions.Wrap<TwoDimensionalArray>()
    SystemExtensions.BinarySerialize()
    SystemExtensions.ToDescriptionString()
    ConfigFileExtensions.NotNull(FileInfo, String, String)
    ConfigFileExtensions.ValidateNotNull(String, String)
    ConfigFileExtensions.ValidateLessThan<T>(Nullable<T>, String, Nullable<T>, String, String)
    ExtensionsXml.SerializeObject<TwoDimensionalArray>()
    • Improve this Doc
    • View Source
    In This Article
    Generated by DocFX AP docs version: 21.7.0.4-master-e26127a50d7bd7472d47288f10e61014fb981f7f-DIRTY-CI:144 Back to top