-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Closed
Description
Most appropriate sub-area of p5.js?
- Accessibility (Web Accessibility)
- Build tools and processes
- Color
- Core/Environment/Rendering
- Data
- DOM
- Events
- Friendly error system
- Image
- IO (Input/Output)
- Localization
- Math
- Unit Testing
- Typography
- Utilities
- WebGL
- Other (specify if possible)
Details about the bug:
- p5.js version: latest at editor.p5js.org website
- Web browser and version: Chrome 87.0.4280.141 (Official Build) (64-bit) (cohort: Stable)
- Operating System: Windows
- Steps to reproduce this:
Paste this code into the editor at https://editor.p5js.org/ and remove the WEBGL parameter and see the difference. The rectangle should have curved corners. The rectangles position is not relevant to this bug.
function setup() {
// Create the canvas
createCanvas(720, 400, WEBGL);
background(200);
// Set colors
fill(204, 101, 192, 127);
stroke(127, 63, 120);
// A rectangle
rect(0, 120, 120, 40, 40, 1, 5, 1);
}