Libraryless. Click here for Pure Java version (5814L/32K).
sclass CircleWithColor implements RenderableWithHints { Pt center; int r; RGB color; *() {} *(Pt *center, int *r, RGB *color) {} *(Pt *center, int *r, Color color) { this.color = new RGB(color); } public void renderOn(Graphics2D g, int w, int h) { fillCircle(g, center.x, center.y, r, toColor(color)); } public void renderHints(Graphics2D g, int w, int h) { drawCircle(g, center.x, center.y, r, colorWithAlpha(0.5, Color.black)); } }
Began life as a copy of #1014967
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1014981 |
| Snippet name: | CircleWithColor |
| Eternal ID of this version: | #1014981/5 |
| Text MD5: | 96e857b5e7568b6ebcecd3ae9c71197e |
| Transpilation MD5: | c926c867235f457f207f1e61dc58ee77 |
| Author: | stefan |
| Category: | javax |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2022-02-05 02:53:22 |
| Source code size: | 488 bytes / 17 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 688 / 1369 |
| Version history: | 4 change(s) |
| Referenced in: | #1034167 - Standard Classes + Interfaces (LIVE, continuation of #1003674) |