May 2001
Intermediate to advanced
720 pages
23h 24m
English
Math.PI Property — the ratio of a circle’s circumference to its diameter, approximately 3.14159
Flash 5; may be used when exporting Flash 4 movies
Math.PI
The PI property represents the constant π, the
ratio of the circumference of a circle to its diameter.
Math.PI is most famously used in calculating the
area of a circle:
function circleArea (radius) {
// PI times the radius squared could also be
// written as Math.PI * Math.pow(radius, 2)
return Math.PI * (radius * radius);
}Read now
Unlock full access