MSFVectorData

Objective-C


@interface MSFVectorData : NSObject {
  void *swigCPtr;
  BOOL swigCMemOwn;
}

Swift

class MSFVectorData : NSObject

A wrapper class for vector element data.

  • Checks if this object is equal to the specified object.

    Declaration

    Objective-C

    - (BOOL)isEqual:(id)object;

    Swift

    func isEqual(_ object: Any!) -> Bool

    Parameters

    object

    The reference object.

    Return Value

    True when objects are equal, false otherwise.

  • Returns the hash value of this object.

    Declaration

    Objective-C

    - (NSUInteger)hash;

    Swift

    func hash() -> UInt

    Return Value

    The hash value of this object.

  • Constructs a VectorData object from a list of vector elements.

    Declaration

    Objective-C

    - (id)initWithElements:(MSFVectorElementVector *)elements;

    Swift

    init!(elements: MSFVectorElementVector!)

    Parameters

    elements

    The list of vector elements.

  • Returns the list of vector elements.

    Declaration

    Objective-C

    - (MSFVectorElementVector *)getElements;

    Swift

    func getElements() -> MSFVectorElementVector!

    Return Value

    The list of vector elements.

  • Undocumented

    Declaration

    Objective-C

    -(void)dealloc;

    Swift

    func dealloc()