Index
All Classes and Interfaces|All Packages
S
- S - Enum constant in enum class codedraw.Key
- SADDLE_BROWN - Static variable in class codedraw.Palette
- SALMON - Static variable in class codedraw.Palette
- SANDY_BROWN - Static variable in class codedraw.Palette
- save(Image, String, ImageFormat) - Static method in class codedraw.Image
-
Saves the image to the specified location using the specified image format.
- scale(double, double) - Method in class codedraw.Matrix2D
-
Scales the coordinate system at the (0, 0) coordinate.
- scale(Image, double) - Static method in class codedraw.Image
-
Increases or decrease the size of the image given as a parameter.
- scale(Image, double, Interpolation) - Static method in class codedraw.Image
-
Increases or decrease the size of the image given as a parameter.
- scaleAt(double, double, double, double) - Method in class codedraw.Matrix2D
-
Scales the coordinate system from the specified coordinates.
- Screen - Class in codedraw
-
Represents the monitors attached to the computer.
- SCROLL_LOCK - Enum constant in enum class codedraw.Key
- SEA_GREEN - Static variable in class codedraw.Palette
- SEA_SHELL - Static variable in class codedraw.Palette
- SEMICOLON - Enum constant in enum class codedraw.Key
- SEPARATOR - Enum constant in enum class codedraw.Key
- set(int, int, double) - Method in class codedraw.Matrix2D
-
Creates a new matrix and changes the value in the matrix at the specified location.
- setAlwaysOnTop(boolean) - Method in class codedraw.CodeDraw
-
When set to true this CodeDraw window will always be displayed on top of other windows.
- setAntiAliased(boolean) - Method in class codedraw.Image
-
Defines whether drawn text and shapes are anti-aliased.
- setBold(boolean) - Method in class codedraw.TextFormat
-
Defines whether the drawn text is bold.
- setCanvasPositionX(int) - Method in class codedraw.CodeDraw
-
Sets the distance in pixel from the top left corner of the default screen to the top left corner of the CodeDraw canvas.
- setCanvasPositionY(int) - Method in class codedraw.CodeDraw
-
Sets the distance in pixel from the top left corner of the default screen to the top left corner of the CodeDraw canvas.
- setColor(Color) - Method in class codedraw.Image
-
Defines the color that is used for drawing all shapes.
- setCorner(Corner) - Method in class codedraw.Image
-
Defines how the corners of drawn shapes should look.
- setCornerRadius(double) - Method in class codedraw.Image
-
Defines the radius of the corners of rectangular shapes:
Image.drawSquare(double, double, double)
,Image.fillSquare(double, double, double)
,Image.drawRectangle(double, double, double, double)
,Image.fillRectangle(double, double, double, double)
; Per default it is set to 10 pixel. - setCursorStyle(CursorStyle) - Method in class codedraw.BorderlessWindow
-
Defines the style of the cursor while hovering over the CodeDraw canvas.
- setCursorStyle(CursorStyle) - Method in class codedraw.CodeDraw
-
Defines the style of the cursor while hovering over the CodeDraw canvas.
- setCursorStyle(CursorStyle) - Method in class codedraw.FullScreen
-
Defines the style of the cursor while hovering over the CodeDraw canvas.
- setDrawOver(boolean) - Method in class codedraw.Image
-
Defines the way new pixels are drawn over already existing pixels.
- setFontName(String, String...) - Method in class codedraw.TextFormat
-
Defines the font of the drawn text.
- setFontNameToDefault() - Method in class codedraw.TextFormat
-
Sets the font-name property to its default value
Font.DIALOG
. - setFontSize(int) - Method in class codedraw.TextFormat
-
Defines the font size of the drawn text.
- setInstantDraw(boolean) - Method in class codedraw.BorderlessWindow
-
When InstantDraw is enabled CodeDraw will immediately draw all shapes to the canvas without calling
BorderlessWindow.show()
. - setInstantDraw(boolean) - Method in class codedraw.CodeDraw
-
When InstantDraw is enabled CodeDraw will immediately draw all shapes to the canvas without calling
CodeDraw.show()
. - setInstantDraw(boolean) - Method in class codedraw.FullScreen
-
When InstantDraw is enabled CodeDraw will immediately draw all shapes to the canvas without calling
FullScreen.show()
. - setIsAlwaysOnTop(boolean) - Method in class codedraw.BorderlessWindow
-
When set to true this CodeDraw window will always be displayed on top of other windows.
- setIsAlwaysOnTop(boolean) - Method in class codedraw.FullScreen
-
When set to true this CodeDraw window will always be displayed on top of other windows.
- setItalic(boolean) - Method in class codedraw.TextFormat
-
Defines whether the drawn text is italic.
- setLineWidth(double) - Method in class codedraw.Image
-
Defines the width or thickness of drawn shapes and lines.
- setPixel(int, int, Color) - Method in class codedraw.Image
-
Draws a point which is the size of one pixel.
- setStrikethrough(boolean) - Method in class codedraw.TextFormat
-
Defines whether the drawn text is strikethrough.
- setTextFormat(TextFormat) - Method in class codedraw.Image
-
Defines the styling of drawn text.
- setTextOrigin(TextOrigin) - Method in class codedraw.TextFormat
-
Defines the origin of the drawn text relative to the position specified in the
Image.drawText(double, double, String)
method. - setTitle(String) - Method in class codedraw.BorderlessWindow
-
The title is the description displayed in many places on your operating system.
- setTitle(String) - Method in class codedraw.CodeDraw
-
The title is the text displayed in the top left corner of the CodeDraw window.
- setTitle(String) - Method in class codedraw.FullScreen
-
The title is the description displayed in many places on your operating system.
- setTransformation(Matrix2D) - Method in class codedraw.Image
-
A transformation can be used to apply a linear transformations before shapes are drawn to the image.
- setTransformationToIdentity() - Method in class codedraw.Image
-
Resets the current transformation to the default value where no transformation is applied.
- setUnderlined(Underline) - Method in class codedraw.TextFormat
-
Defines the underline styling of the drawn text.
- setWindowPositionX(int) - Method in class codedraw.BorderlessWindow
-
Sets the distance in pixel from the top left corner of the default screen to the top left corner of the borderless window.
- setWindowPositionX(int) - Method in class codedraw.CodeDraw
-
Sets the distance in pixel from the top left corner of the default screen to the top left corner of the CodeDraw window.
- setWindowPositionY(int) - Method in class codedraw.BorderlessWindow
-
Sets the distance in pixel from the top left corner of the default screen to the top left corner of the borderless window.
- setWindowPositionY(int) - Method in class codedraw.CodeDraw
-
Sets the distance in pixel from the top left corner of the default screen to the top left corner of the CodeDraw window.
- SHARP - Enum constant in enum class codedraw.Corner
-
All corners of drawn and filled shapes such as rectangles will be pointy.
- shear(double, double) - Method in class codedraw.Matrix2D
-
Shears the coordinate system from the (0, 0) coordinate.
- shearAt(double, double, double, double) - Method in class codedraw.Matrix2D
-
Shears the coordinate system at the specified coordinate.
- SHIFT - Enum constant in enum class codedraw.Key
- show() - Method in class codedraw.BorderlessWindow
-
Displays all the shapes and images that were drawn onto the canvas.
- show() - Method in class codedraw.CodeDraw
-
Displays all the shapes and images that were drawn onto the canvas.
- show() - Method in class codedraw.FullScreen
-
Displays all the shapes and images that were drawn onto the canvas.
- show(long) - Method in class codedraw.BorderlessWindow
-
Displays all the shapes and images that were drawn onto the canvas and waits for the given amount of milliseconds.
- show(long) - Method in class codedraw.CodeDraw
-
Displays all the shapes and images that were drawn onto the canvas and waits for the given amount of milliseconds.
- show(long) - Method in class codedraw.FullScreen
-
Displays all the shapes and images that were drawn onto the canvas and waits for the given amount of milliseconds.
- show(Image) - Static method in class codedraw.BorderlessWindow
-
Shows the specified image in a borderless window fitting the size of the image.
- show(Image) - Static method in class codedraw.CodeDraw
-
Shows the specified image in a CodeDraw window fitting the size of the image.
- SIENNA - Static variable in class codedraw.Palette
- SILVER - Static variable in class codedraw.Palette
- simulate() - Method in interface codedraw.Animation
-
This method is executed independently of the
Animation.draw(Image)
method. - SKY_BLUE - Static variable in class codedraw.Palette
- SLASH - Enum constant in enum class codedraw.Key
- SLATE_BLUE - Static variable in class codedraw.Palette
- SLATE_GRAY - Static variable in class codedraw.Palette
- SNOW - Static variable in class codedraw.Palette
- SOLID - Enum constant in enum class codedraw.Underline
-
A solid line will be drawn below the text.
- SOUTH_EAST_RESIZE - Static variable in class codedraw.CursorStyle
- SOUTH_RESIZE - Static variable in class codedraw.CursorStyle
- SOUTH_WEST_RESIZE - Static variable in class codedraw.CursorStyle
- SPACE - Enum constant in enum class codedraw.Key
- SPRING_GREEN - Static variable in class codedraw.Palette
- STEEL_BLUE - Static variable in class codedraw.Palette
- STOP - Enum constant in enum class codedraw.Key
- SUBTRACT - Enum constant in enum class codedraw.Key
All Classes and Interfaces|All Packages