LSSTApplications  18.1.0
LSSTDataManagementBasePackage
Classes | Functions | Variables
lsst.skymap.detail.dodecahedron Namespace Reference

Classes

class  Dodecahedron
 

Functions

def computeRotationMatrix (angle, axis)
 

Variables

 precision
 
 suppress
 
 True
 
 linewidth
 
 vertexDodec = Dodecahedron(withFacesOnPoles=False)
 
 faceVec = vertexDodec.getFaceCtr(i)
 

Function Documentation

◆ computeRotationMatrix()

def lsst.skymap.detail.dodecahedron.computeRotationMatrix (   angle,
  axis 
)
Return a 3D rotation matrix for rotation by a specified amount around a
specified axis.

Parameters
----------
angle : `float`
    Amount of rotation (rad).
axis : `int`
    Axis of rotation; one of 0, 1 or 2 for x, y or z.

Definition at line 114 of file dodecahedron.py.

114 def computeRotationMatrix(angle, axis):
115  """Return a 3D rotation matrix for rotation by a specified amount around a
116  specified axis.
117 
118  Parameters
119  ----------
120  angle : `float`
121  Amount of rotation (rad).
122  axis : `int`
123  Axis of rotation; one of 0, 1 or 2 for x, y or z.
124  """
125  cosAng = math.cos(angle)
126  sinAng = math.sin(angle)
127  rotMat = numpy.zeros((3, 3), dtype=float)
128  rotMat[axis, axis] = 1
129  rotMat[(axis + 1) % 3, (axis + 1) % 3] = cosAng
130  rotMat[(axis + 2) % 3, (axis + 1) % 3] = sinAng
131  rotMat[(axis + 1) % 3, (axis + 2) % 3] = -sinAng
132  rotMat[(axis + 2) % 3, (axis + 2) % 3] = cosAng
133  return rotMat
134 
135 
def computeRotationMatrix(angle, axis)

Variable Documentation

◆ faceVec

lsst.skymap.detail.dodecahedron.faceVec = vertexDodec.getFaceCtr(i)

Definition at line 309 of file dodecahedron.py.

◆ linewidth

lsst.skymap.detail.dodecahedron.linewidth

Definition at line 304 of file dodecahedron.py.

◆ precision

lsst.skymap.detail.dodecahedron.precision

Definition at line 304 of file dodecahedron.py.

◆ suppress

lsst.skymap.detail.dodecahedron.suppress

Definition at line 304 of file dodecahedron.py.

◆ True

lsst.skymap.detail.dodecahedron.True

Definition at line 304 of file dodecahedron.py.

◆ vertexDodec

lsst.skymap.detail.dodecahedron.vertexDodec = Dodecahedron(withFacesOnPoles=False)

Definition at line 307 of file dodecahedron.py.