The MVO classes can be used in pretty much the same way as the C/C++ variants.
HCS.Open_Segment("newsegment");
HCS.Insert_Line(0,0,0, 1,1,1);
HCS.Close_Segment();
HOOPS | HOOPS (HC) type | C# type |
'string' | HC type | string |
'writes string' | const char * | StringBuilder |
'HC_KEY' | HC_KEY | HLONG (System.Int32 / System.Int64) |
'int' | int | int |
'writes int' | &int | ref int |
'float' | float | float |
'writes float' | &float | ref float |
'point' | float[3] | float[3] |
'writes point' | &float | float[] |
'writes bytes' | unsigned char * | sbyte[] |
'writes ints' | &int | int[] |