plik


PVector::div() \ 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 PVector Name div() Examples PVector v; void setup() { smooth(); noLoop(); v = new PVector(30, 60, 0); } void draw() { ellipse(v.x, v.y, 12, 12); v.div(6); ellipse(v.x, v.y, 24, 24); }PVector v1, v2; void setup() { smooth(); noLoop(); v1 = new PVector(90, 80, 0); v2 = new PVector(2, 10, 0); } void draw() { ellipse(v1.x, v1.y, 12, 12); ellipse(v2.x, v2.y, 12, 12); v1.div(v2); ellipse(v1.x, v1.y, 24, 24); }PVector v1; void setup() { smooth(); noLoop(); v1 = new PVector(30, 60, 0); } void draw() { ellipse(v1.x, v1.y, 12, 12); PVector v2 = PVector.div(v1, 6); ellipse(v2.x, v2.y, 24, 24); }PVector v1, v2; void setup() { smooth(); noLoop(); v1 = new PVector(5, 10, 0); v2 = new PVector(15, 8, 0); } void draw() { ellipse(v1.x, v1.y, 12, 12); ellipse(v2.x, v2.y, 12, 12); PVector v3 = PVector.div(v1, v2); ellipse(v3.x, v3.y, 24, 24); } Description Divides a vector by a scalar or divides one vector by another. Syntax vec.div(scalar) vec.div(v) PVector.div(v, scalar) PVector.div(v1, v2) Parameters vec any variable of type PVector scalar float: the number to divide with the vector v PVector: the vector to divide by the scalar v1 PVector: the x, y, and z components of a PVector object v2 PVector: the x, y, and z components of a PVector object Returns None or PVector Usage Web & Application Updated on February 26, 2009 05:47:54pm 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:
PVector div
PVector normalize
PVector cross
function gmp div q
div
PVector angleBetween
function gmp div r
div (2)
PVector set
PVector?d
div
PVector cross

więcej podobnych podstron