PointingAlong#
This is a Python binding to the C++ class Mantid::Geometry::PointingAlong.
- class mantid.geometry.PointingAlong#
- X = mantid.geometry._geometry.PointingAlong.X#
- Y = mantid.geometry._geometry.PointingAlong.Y#
- Z = mantid.geometry._geometry.PointingAlong.Z#
- as_integer_ratio()#
Return a pair of integers, whose ratio is equal to the original int.
The ratio is in lowest terms and has a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- bit_count()#
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
>>> bin(13) '0b1101' >>> (13).bit_count() 3
- bit_length()#
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- is_integer()#
Returns True. Exists for duck type compatibility with float.is_integer.
- name#
- names = {'X': mantid.geometry._geometry.PointingAlong.X, 'Y': mantid.geometry._geometry.PointingAlong.Y, 'Z': mantid.geometry._geometry.PointingAlong.Z}#
- values = {0: mantid.geometry._geometry.PointingAlong.X, 1: mantid.geometry._geometry.PointingAlong.Y, 2: mantid.geometry._geometry.PointingAlong.Z}#