diff --git a/content/api_en/point.xml b/content/api_en/point.xml index ac8d5b36b..6034c7f82 100755 --- a/content/api_en/point.xml +++ b/content/api_en/point.xml @@ -37,6 +37,8 @@ Draws a point, a coordinate in space at the dimension of one pixel. The first pa Use stroke() to set the color of a point().

Point appears round with the default strokeCap(ROUND) and square with strokeCap(PROJECT). Points are invisible with strokeCap(SQUARE) (no cap). +

+Using point() with strokeWeight(1) or smaller may draw nothing to the screen, depending on the graphics settings of the computer. Workarounds include setting the pixel using set() or drawing the point using either circle() or square(). ]]> diff --git a/content/api_en/strokeWeight.xml b/content/api_en/strokeWeight.xml index d614509e9..e954ffb95 100755 --- a/content/api_en/strokeWeight.xml +++ b/content/api_en/strokeWeight.xml @@ -22,6 +22,8 @@ line(20, 70, 80, 70);
+Using point() with strokeWeight(1) or smaller may draw nothing to the screen, depending on the graphics settings of the computer. Workarounds include setting the pixel using set() or drawing the point using either circle() or square(). ]]>