- pause(int) - Static method in class src.StdDraw
-
Pauses for t milliseconds.
- picture(double, double, String) - Static method in class src.StdDraw
-
Draws the specified image centered at (x, y).
- picture(double, double, String, double) - Static method in class src.StdDraw
-
Draws the specified image centered at (x, y), rotated given
number of degrees.
- picture(double, double, String, double, double) - Static method in class src.StdDraw
-
Draws the specified image centered at (x, y), rescaled to
the specified bounding box.
- picture(double, double, String, double, double, double) - Static method in class src.StdDraw
-
Draws the specified image centered at (x, y), rotated given
number of degrees, and rescaled to the specified bounding box.
- PINK - Static variable in class src.StdDraw
-
The color pink.
- point(double, double) - Static method in class src.StdDraw
-
Draws a point centered at (x, y).
- polygon(double[], double[]) - Static method in class src.StdDraw
-
Draws a polygon with the vertices (x0,
y0), (x1, y1),
..., (xn–1, yn–1).
- PRINCETON_ORANGE - Static variable in class src.StdDraw
-
Shade of orange used in Princeton University's identity.
- save(String) - Static method in class src.StdDraw
-
Saves the drawing to using the specified filename.
- setCanvasSize() - Static method in class src.StdDraw
-
Sets the canvas (drawing area) to be 512-by-512 pixels.
- setCanvasSize(int, int) - Static method in class src.StdDraw
-
Sets the canvas (drawing area) to be width-by-height
pixels.
- setFont() - Static method in class src.StdDraw
-
Sets the font to the default font (sans serif, 16 point).
- setFont(Font) - Static method in class src.StdDraw
-
Sets the font to the specified value.
- setPenColor() - Static method in class src.StdDraw
-
Sets the pen color to the default color (black).
- setPenColor(Color) - Static method in class src.StdDraw
-
Sets the pen color to the specified color.
- setPenColor(int, int, int) - Static method in class src.StdDraw
-
Sets the pen color to the specified RGB color.
- setPenRadius() - Static method in class src.StdDraw
-
Sets the pen size to the default size (0.002).
- setPenRadius(double) - Static method in class src.StdDraw
-
Sets the radius of the pen to the specified size.
- setScale() - Static method in class src.StdDraw
-
Sets the x-scale and y-scale to be the default (between 0.0
and 1.0).
- setScale(double, double) - Static method in class src.StdDraw
-
Sets both the x-scale and y-scale to the (same) specified
range.
- setXscale() - Static method in class src.StdDraw
-
Sets the x-scale to be the default (between 0.0 and 1.0).
- setXscale(double, double) - Static method in class src.StdDraw
-
Sets the x-scale to the specified range.
- setYscale() - Static method in class src.StdDraw
-
Sets the y-scale to be the default (between 0.0 and 1.0).
- setYscale(double, double) - Static method in class src.StdDraw
-
Sets the y-scale to the specified range.
- show(int) - Static method in class src.StdDraw
-
- show() - Static method in class src.StdDraw
-
Copies offscreen buffer to onscreen buffer.
- square(double, double, double) - Static method in class src.StdDraw
-
Draws a square of the specified size, centered at (x, y).
- src - package src
-
- StdDraw - Class in src
-
The StdDraw class provides a basic capability for creating drawings
with your programs.