rotationMatrix.js 521 B

12345678
  1. export var rotationMatrixDocs = {
  2. name: 'rotationMatrix',
  3. category: 'Matrix',
  4. syntax: ['rotationMatrix(theta)', 'rotationMatrix(theta, v)', 'rotationMatrix(theta, v, format)'],
  5. description: 'Returns a 2-D rotation matrix (2x2) for a given angle (in radians). ' + 'Returns a 2-D rotation matrix (3x3) of a given angle (in radians) around given axis.',
  6. examples: ['rotationMatrix(pi / 2)', 'rotationMatrix(unit("45deg"), [0, 0, 1])', 'rotationMatrix(1, matrix([0, 0, 1]), "sparse")'],
  7. seealso: ['cos', 'sin']
  8. };