Skip to content

Commit 1c86f6f

Browse files
committed
change system variable to variable
1 parent 9ceef88 commit 1c86f6f

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

py5_docs/Reference/api_en/Py5Graphics_height.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ pclass = PGraphics
77
processing_name = height
88

99
@@ description
10-
System variable that stores the height of the Py5Graphics drawing surface. This value is set when creating the `Py5Graphics` object with the [](sketch_create_graphics) method. For example, `create_graphics(320, 240)` sets the `height` variable to the value 240.
10+
Variable that stores the height of the Py5Graphics drawing surface. This value is set when creating the `Py5Graphics` object with the [](sketch_create_graphics) method. For example, `create_graphics(320, 240)` sets the `height` variable to the value 240.
1111

1212
This field is the same as [](sketch_height) but linked to a `Py5Graphics` object. To see example code for how it can be used, see [](sketch_height).

py5_docs/Reference/api_en/Py5Graphics_width.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ pclass = PGraphics
77
processing_name = width
88

99
@@ description
10-
System variable that stores the width of the Py5Graphics drawing surface. This value is set when creating the `Py5Graphics` object with the [](sketch_create_graphics) method. For example, `create_graphics(320, 240)` sets the `width` variable to the value 320.
10+
Variable that stores the width of the Py5Graphics drawing surface. This value is set when creating the `Py5Graphics` object with the [](sketch_create_graphics) method. For example, `create_graphics(320, 240)` sets the `width` variable to the value 320.
1111

1212
This field is the same as [](sketch_width) but linked to a `Py5Graphics` object. To see example code for how it can be used, see [](sketch_width).

py5_docs/Reference/api_en/Sketch_display_height.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pclass = PApplet
77
processing_name = displayHeight
88

99
@@ description
10-
System variable that stores the height of the entire screen display. This can be used to run a full-screen program on any display size, but calling [](sketch_full_screen) is usually a better choice.
10+
Variable that stores the height of the entire screen display. This can be used to run a full-screen program on any display size, but calling [](sketch_full_screen) is usually a better choice.
1111

1212
@@ example
1313
def setup():

py5_docs/Reference/api_en/Sketch_display_width.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pclass = PApplet
77
processing_name = displayWidth
88

99
@@ description
10-
System variable that stores the width of the entire screen display. This can be used to run a full-screen program on any display size, but calling [](sketch_full_screen) is usually a better choice.
10+
Variable that stores the width of the entire screen display. This can be used to run a full-screen program on any display size, but calling [](sketch_full_screen) is usually a better choice.
1111

1212
@@ example
1313
def setup():

py5_docs/Reference/api_en/Sketch_height.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pclass = PApplet
77
processing_name = height
88

99
@@ description
10-
System variable that stores the height of the display window. This value is set by the second parameter of the [](sketch_size) function. For example, the function call `size(320, 240)` sets the `height` variable to the value 240. The value of `height` defaults to 100 if [](sketch_size) is not used in a program.
10+
Variable that stores the height of the display window. This value is set by the second parameter of the [](sketch_size) function. For example, the function call `size(320, 240)` sets the `height` variable to the value 240. The value of `height` defaults to 100 if [](sketch_size) is not used in a program.
1111

1212
@@ example
1313
image = Sketch_height_0.png

py5_docs/Reference/api_en/Sketch_width.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pclass = PApplet
77
processing_name = width
88

99
@@ description
10-
System variable that stores the width of the display window. This value is set by the first parameter of the [](sketch_size) function. For example, the function call `size(320, 240)` sets the `width` variable to the value 320. The value of `width` defaults to 100 if [](sketch_size) is not used in a program.
10+
Variable that stores the width of the display window. This value is set by the first parameter of the [](sketch_size) function. For example, the function call `size(320, 240)` sets the `width` variable to the value 320. The value of `width` defaults to 100 if [](sketch_size) is not used in a program.
1111

1212
@@ example
1313
image = Sketch_width_0.png

0 commit comments

Comments
 (0)