Category:Dots diagram elements

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

This category contains tiles/elements for constructing Dots positions.

Sourcecode[edit]

Each one of the SVG Dots game images can be composed easily by hand of the following few parts:

the square with the background color  
<rect width="500" height="500" fill="#F4F9F9"/>

<path fill="#F4F9F9" d="m0,0h500v500H0"/> for a bit shorter code

the crossing lines (or part of them)
<path stroke="#000" stroke-width="10" d="M0,250H500M250,0V500"/>
the larger black dot in the center
<circle cx="250" cy="250" r="50"/>
the red circle
<circle stroke="red" stroke-width="40" fill="none" cx="250" cy= "250" r="130"/>
 may be with a small black dot in the center
<circle cx="250" cy="250" r="30"/>
and some other elements like letters, numbers, squares etc.

Media in category "Dots diagram elements"

The following 162 files are in this category, out of 162 total.