PShape rotateY





PShape::rotateY() \ Language (API) \ Processing 1.0
























Search processing.org:





Language (A-Z) \ Libraries \ Tools \ Environment \ Compare \ Troubleshooting






Reference for Processing version 1.0+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.

Class PShape Name rotateY() Examples PShape s; void setup() { size(100, 100, P3D); s = loadShape("ohio.svg"); } void draw() { background(204); shape(s); } void mousePressed() { // Rotate the shape around the y-axis each time the mouse is pressed s.rotateY(0.1); } Description Rotates a shape around the y-axis the amount specified by the angle parameter. Angles should be specified in radians (values from 0 to TWO_PI) or converted to radians with the radians() method. Shapes are always rotated around the upper-left corner of their bounding box. Positive numbers rotate objects in a clockwise direction. Subsequent calls to the method accumulates the effect. For example, calling rotateY(HALF_PI) and then rotateY(HALF_PI) is the same as rotateY(PI). This transformation is applied directly to the shape, it's not refreshed each time draw() is run. This method requires a 3D renderer. You need to pass P3D or OPENGL as a third parameter into the size() method as shown in the example above. Syntax sh.rotateY(angle) Parameters sh PShape: any variable of type PShape angle float: angle of rotation specified in radians Returns none Usage Web & Application

Updated on November 22, 2008 08:39:26pm PST












Processing was initiated by Ben Fry and Casey Reas. It is developed by a small team of volunteers.


© Info \

Site hosted by Media Temple!









Wyszukiwarka

Podobne podstrony:
PShape rotateZ
PShape rotate
PShape rotateX
PShape rotateZ
PShape rotateX
PShape rotate
PShape rotateY
rotateX
rotate copy
function swffill rotateto
PShape enableStyle
rotate
PShape
PShape isVisible
function swfdisplayitem rotate
PShape resetMatrix

więcej podobnych podstron