We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
apply-matrix
pop-matrix
print-matrix
push-matrix
reset-matrix
rotate
rotate-x
rotate-y
rotate-z
scale
shear-x
shear-y
translate
with-rotation
with-translation
The text was updated successfully, but these errors were encountered:
No branches or pull requests
apply-matrix
- "Multiplies the current matrix by the one specified through the parameters"pop-matrix
- "Pops the current transformation matrix off the matrix stack"print-matrix
- "Prints the current matrix to std out"push-matrix
- "Pushes the current transformation matrix onto the matrix stack"reset-matrix
- "Replaces the current matrix with the identity matrix"rotate
- "Rotates a shape the amount specified by the angle parameter"rotate-x
- "Rotates a shape around the x-axis the amount specified by the angle parameter"rotate-y
- "Rotates a shape around the y-axis the amount specified by the angle parameter"rotate-z
- "Rotates a shape around the z-axis the amount specified by the angle parameter"scale
- "Increases or decreases the size of a shape by expanding and contracting vertices"shear-x
- "Shears a shape around the x-axis the amount specified by the angle parameter"shear-y
- "Shears a shape around the y-axis the amount specified by the angle parameter"translate
- "Specifies an amount to displace objects within the display window"with-rotation
- "Performs body with rotation, restores current transformation on exit"with-translation
- "Performs body with translation, restores current transformation on exit"The text was updated successfully, but these errors were encountered: