Search Results for

    Show / Hide Table of Contents

    Class SimpleStore

    Utility class that is intended to support things like writing and reading test cases, etc. You can write out a test case in a single line, eg SimpleStore.Store(path, new object[] { TestMesh, VertexList, PlaneNormal, ... }) The object list will be binned into the relevant sublists automatically. Then you can load this data via: SimpleStore s = SimpleStore.Restore(path)

    Inheritance
    Object
    SimpleStore
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: g3
    Assembly: cs.temp.dll.dll
    Syntax
    public class SimpleStore

    Constructors

    SimpleStore()

    Declaration
    public SimpleStore()

    SimpleStore(Object[])

    Declaration
    public SimpleStore(object[] objs)
    Parameters
    Type Name Description
    Object[] objs

    Fields

    IntLists

    Declaration
    public List<List<int>> IntLists
    Field Value
    Type Description
    List<List<Int32>>

    Meshes

    Declaration
    public List<DMesh3> Meshes
    Field Value
    Type Description
    List<DMesh3>

    Points

    Declaration
    public List<Vector3d> Points
    Field Value
    Type Description
    List<Vector3d>

    Strings

    Declaration
    public List<string> Strings
    Field Value
    Type Description
    List<String>

    Methods

    Add(Object[])

    Declaration
    public void Add(object[] objs)
    Parameters
    Type Name Description
    Object[] objs

    Restore(String)

    Declaration
    public static SimpleStore Restore(string sPath)
    Parameters
    Type Name Description
    String sPath
    Returns
    Type Description
    SimpleStore

    Store(String, SimpleStore)

    Declaration
    public static void Store(string sPath, SimpleStore s)
    Parameters
    Type Name Description
    String sPath
    SimpleStore s

    Store(String, Object[])

    Declaration
    public static void Store(string sPath, object[] objs)
    Parameters
    Type Name Description
    String sPath
    Object[] objs
    In This Article
    Back to top ViRGIS VR GIS