Method: pointToValue
Converts input point value to output value in units of ExpDimRef.unit, correcting for referencing.
guid:
|
www.ccpn.ac.uk_Fogh_2006-08-16-18:20:03_00008
|
OpType:
|
otherQuery
|
OpSubType:
|
None
|
isQuery:
|
True
|
isAbstract:
|
False
|
Scope:
|
instance_level
|
Code:
|
if self.expDimRef.isAxisReversed:
valuePerPoint = -self.valuePerPoint
else:
valuePerPoint = self.valuePerPoint
result = self.refValue + (point-self.refPoint) * valuePerPoint
|
|