print_projection()
Contents
print_projection()¶
Prints the current projection matrix to standard output.
Examples¶
1 2 3 4 5 6 7 8 9 | def setup():
py5.size(100, 100, py5.P3D)
py5.print_projection()
# the program above prints this data:
# 01.7321 00.0000 00.0000 00.0000
# 00.0000 -01.7321 00.0000 00.0000
# 00.0000 00.0000 -01.0202 -17.4955
# 00.0000 00.0000 -01.0000 00.0000
|
Description¶
Prints the current projection matrix to standard output.
Underlying Processing method: printProjection