internal Mesh(swig.Mesh swig) { #if DEBUG // 唯一の対応するクラスであることを保証 if (GC.Meshs.GetObject(swig.GetPtr()) != null) { Particular.Helper.ThrowException(""); } #endif CoreInstance = swig; }
internal Mesh(swig.Mesh swig) { #if DEBUG // 唯一の対応するクラスであることを保証 if (GC.Meshs.GetObject(swig.GetPtr()) != null) { throw new Exception(); } #endif SwigObject = swig; }
internal Mesh(swig.Mesh coreInstance) { #if DEBUG // 唯一の対応するクラスであることを保証 if (GC.Meshs.Contains(coreInstance.GetPtr())) { Particular.Helper.ThrowException(""); } #endif CoreInstance = coreInstance; }
/// <summary> /// ネイティブのインスタンスからラッパー側のインスタンスを生成する。 /// </summary> /// <param name="o"></param> /// <param name="type"></param> internal static Mesh GenerateMesh(swig.Mesh o, GenerationType type) { var p = o.GetPtr(); var existing = GC.Meshs.GetObject(p); existing = GenerateInternal(existing, o, type); if (existing != null) { return(existing); } var ret = new Mesh(o); GC.Meshs.AddObject(p, ret); return(ret); }