|
OpenCMISS-Iron Python Bindings API Documentation
|


Public Member Functions | |
| def | __init__ (self) |
| def | CreateFinish (self) |
| def | CreateStartInterface (self, interface, numberOfDataPoints) |
| def | CreateStart (self, region, numberOfDataPoints) |
| def | Destroy (self) |
| def | Finalise (self) |
| def | LabelGet (self, dataPointGlobalNumber) |
| def | LabelSet (self, dataPointGlobalNumber, label) |
| def | NumberOfDataPointsGet (self) |
| def | UserNumberGet (self, dataPointGlobalNumber) |
| def | UserNumberSet (self, dataPointGlobalNumber, dataPointUserNumber) |
| def | ValuesGet (self, dataPointGlobalNumber, dataPointValuesSize) |
| def | ValuesSet (self, dataPointGlobalNumber, dataPointValues) |
| def | WeightsGet (self, dataPointGlobalNumber, dataPointWeightsSize) |
| def | WeightsSet (self, dataPointGlobalNumber, dataPointWeights) |
Public Attributes | |
| cmiss_type | |
Properties | |
| numberOfDataPoints = property(NumberOfDataPointsGet, None, None, ) | |
Contains information on the data points defined on a region.
| def iron.DataPoints.__init__ | ( | self | ) |
| def iron.DataPoints.CreateFinish | ( | self | ) |
| def iron.DataPoints.CreateStart | ( | self, | |
| region, | |||
| numberOfDataPoints | |||
| ) |
Starts the creation of a data points in a region for data points identified by an object. :param region: The region to start the creation of data points on. :type region: Region :param numberOfDataPoints: The number of data points to create. :type numberOfDataPoints: int :rtype: None
| def iron.DataPoints.CreateStartInterface | ( | self, | |
| interface, | |||
| numberOfDataPoints | |||
| ) |
Starts the creation of a data points in a region for data points identified by an object. :param interface: The interface to start the creation of data points on. :type interface: Interface :param numberOfDataPoints: The number of data points to create. :type numberOfDataPoints: int :rtype: None
| def iron.DataPoints.Destroy | ( | self | ) |
| def iron.DataPoints.Finalise | ( | self | ) |
| def iron.DataPoints.LabelGet | ( | self, | |
| dataPointGlobalNumber | |||
| ) |
Returns the character label for a data point in a set of data points identified by an object. :param dataPointGlobalNumber: The global number of the data points to get the label for. :type dataPointGlobalNumber: int :returns: label. The label for the data point. :rtype: string
| def iron.DataPoints.LabelSet | ( | self, | |
| dataPointGlobalNumber, | |||
| label | |||
| ) |
Sets/changes the character label for a data point in a set of data points identified by an object. :param dataPointGlobalNumber: The global number of the data points to set the label for. :type dataPointGlobalNumber: int :param label: The label for the data point to set. :type label: string :rtype: None
| def iron.DataPoints.NumberOfDataPointsGet | ( | self | ) |
| def iron.DataPoints.UserNumberGet | ( | self, | |
| dataPointGlobalNumber | |||
| ) |
Returns the user number for a data point in a set of data points identified by an object. :param dataPointGlobalNumber: The global number of the data points to get the data point user number for. :type dataPointGlobalNumber: int :returns: dataPointUserNumber. The user number for the data point. :rtype: int
| def iron.DataPoints.UserNumberSet | ( | self, | |
| dataPointGlobalNumber, | |||
| dataPointUserNumber | |||
| ) |
Sets/changes the user number for a data point in a set of data points identified by an object. :param dataPointGlobalNumber: The global number of the data points to set the data point user number for. :type dataPointGlobalNumber: int :param dataPointUserNumber: The user number for the data point to set. :type dataPointUserNumber: int :rtype: None
| def iron.DataPoints.ValuesGet | ( | self, | |
| dataPointGlobalNumber, | |||
| dataPointValuesSize | |||
| ) |
Returns the values for a data point in a set of data points identified by an object. :param dataPointGlobalNumber: The global number of the data points to get the data point user number for. :type dataPointGlobalNumber: int :param dataPointValuesSize: Size of dataPointValues to allocate. :returns: dataPointValues. The values for the data point. :rtype: Array of floats
| def iron.DataPoints.ValuesSet | ( | self, | |
| dataPointGlobalNumber, | |||
| dataPointValues | |||
| ) |
Sets/changes the values for a data point in a set of data points identified by an object. :param dataPointGlobalNumber: The global number of the data points to set the data point user number for. :type dataPointGlobalNumber: int :param dataPointValues: The values for the data point to set. :type dataPointValues: Array of floats :rtype: None
| def iron.DataPoints.WeightsGet | ( | self, | |
| dataPointGlobalNumber, | |||
| dataPointWeightsSize | |||
| ) |
Returns the weights for a data point in a set of data points identified by an object. :param dataPointGlobalNumber: The global number of the data points to get the data point user number for. :type dataPointGlobalNumber: int :param dataPointWeightsSize: Size of dataPointWeights to allocate. :returns: dataPointWeights. The weights for the data point. :rtype: Array of floats
| def iron.DataPoints.WeightsSet | ( | self, | |
| dataPointGlobalNumber, | |||
| dataPointWeights | |||
| ) |
Sets/changes the weights for a data point in a set of data points identified by an object. :param dataPointGlobalNumber: The global number of the data points to set the data point user number for. :type dataPointGlobalNumber: int :param dataPointWeights: The weights for the data point to set. :type dataPointWeights: Array of floats :rtype: None
|
static |