MSFGeometryVector
Objective-C
@interface MSFGeometryVector : NSObject
{
/** @internal:nodoc: */
void *swigCPtr;
/** @internal:nodoc: */
BOOL swigCMemOwn;
}
/** @internal:nodoc: */
-(void*)getCptr;
/** @internal:nodoc: */
-(id)initWithCptr: (void*)cptr swigOwnCObject: (BOOL)ownCObject;
-(id)init;
-(unsigned int)size;
-(unsigned int)capacity;
-(void)reserve: (unsigned int)n;
-(BOOL)isEmpty;
-(void)clear;
-(void)add: (MSFGeometry*)x;
-(MSFGeometry*)get: (int)i;
-(void)set: (int)i val: (MSFGeometry*)val;
/**
* Returns the raw pointer to the object. This is used internally by the SDK.
* @return The internal pointer of the object.
*/
/** @internal:nodoc: */
-(long long)swigGetRawPtr;
-(void)dealloc;
@end
Swift
class MSFGeometryVector : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
-(id)init;Swift
init!() -
Undocumented
Declaration
Objective-C
-(unsigned int)size;Swift
func size() -> UInt32 -
Undocumented
Declaration
Objective-C
-(unsigned int)capacity;Swift
func capacity() -> UInt32 -
Undocumented
Declaration
Objective-C
-(void)reserve: (unsigned int)n;Swift
func reserve(_ n: UInt32) -
Undocumented
Declaration
Objective-C
-(BOOL)isEmpty;Swift
func isEmpty() -> Bool -
Undocumented
Declaration
Objective-C
-(void)clear;Swift
func clear() -
Undocumented
-
Undocumented
-
Undocumented
Declaration
Objective-C
-(void)set: (int)i val: (MSFGeometry*)val;Swift
func set(_ i: Int32, val: MSFGeometry!) -
Undocumented
Declaration
Objective-C
-(void)dealloc;Swift
func dealloc()