mirror of
https://github.com/imjasonh/tank-commander
synced 2026-07-08 10:14:57 +00:00
initial commit
Signed-off-by: Jason Hall <jason@chainguard.dev>
This commit is contained in:
commit
3bda33474e
5 changed files with 384 additions and 0 deletions
155
README.md
Normal file
155
README.md
Normal file
|
|
@ -0,0 +1,155 @@
|
|||
# Tank Commander
|
||||
|
||||
Version 0.0.1-r0
|
||||
|
||||
## Introduction
|
||||
|
||||
**Tank Commander** is a simple table-top game where two players take turns to shoot at each other's tanks. The game is played on a hexagonal grid, and each player has a tank that can move and shoot in six directions. The simplest goal of the game is to destroy the opponent's units.
|
||||
|
||||
Players take turns activating a unit, performing a number of actions with it, and then ending their turn. The game is over when one tank is destroyed.
|
||||
|
||||
## Building your Tank
|
||||
|
||||
The basic tank starts with the following stats:
|
||||
|
||||
| Armor | Movement | Accuracy | Hull Points | Actions |
|
||||
|-------|----------|----------|-------------|---------|
|
||||
| 6/6/6 | 3 | 4+ | 4 | 5 |
|
||||
|
||||
It has a main turret gun with anti-tank (AT) rounds, with a range of 5 spaces.
|
||||
|
||||
Before the game begins, players can upgrade their tanks, spending up to 10 upgrade points on the following items:
|
||||
|
||||
- **Armor**: Increases the armor of the tank by 1 point. Costs 1 upgrade point per armor point, to a max of 3 per facing.
|
||||
- Side armor cannot exceed front armor.
|
||||
- Rear armor cannot exceed side armor.
|
||||
- **Engine Upgrade**: Increases the movement range of the tank by 1. Costs 1 upgrade point.
|
||||
- **Extended Barrel**: Increases the range of the main gun by 1. Costs 1 upgrade point.
|
||||
- **Enhanced Optics**: Increases the accuracy of the main gun by 1. Costs 1 upgrade point.
|
||||
- **High-Explosive (HE) Rounds**: Allows HE rounds to be loaded. Costs 1 upgrade point.
|
||||
- **Anti-Infantry Weapons**: Allows the tank to fire at infantry units at a range of 2 spaces. Costs 1 upgrade point.
|
||||
- **Smoke Launcher**: Allows the tank to deploy smoke, blocking line of sight through one space within a range of 2 spaces. Costs 1 upgrade point.
|
||||
- **Lieutenant Commander**: Adds a Lieutenant Commander to the crew. Costs 1 upgrade point.
|
||||
- **Air Support**: Allows the tank to call in an air strike during the battle. Costs 2 upgrade points.
|
||||
- **Anti-Tank Mines**: Allows the tank to deploy anti-tank mines. Costs 1 upgrade point per space, up to 3 maximum.
|
||||
|
||||
For example, a tank could spend its upgrade points on the following upgrades:
|
||||
- Armor: Front 8, Side 8, Rear 6 (4 points)
|
||||
- Engine, Barrel, Optics: 3 points total
|
||||
- Lieutenant Commander: 1 point
|
||||
- Air Support: 2 points
|
||||
|
||||
The tank has a crew of 4 members:
|
||||
- The **Commander** commands the tank
|
||||
- The **Gunner** fires the turret gun and any other weapons
|
||||
- The **Loader** loads the main gun
|
||||
- The **Driver** moves the tank
|
||||
- (Optional): The **Lieutenant Commander** can take over any role if the crew member is killed.
|
||||
|
||||
## Playing the Game
|
||||
|
||||
Players roll a die to determine who goes first. The player who rolls the highest number goes first.
|
||||
|
||||
On their turn, the player can perform actions by spending action points:
|
||||
|
||||
- **Move**: Move the tank forward one space.
|
||||
- **Turn**: Rotate to the left or right 60 degrees. This can also rotate the turret, or not.
|
||||
- **Rotate Turret**: Rotate the turret to the left or right 60 degrees.
|
||||
- **Fire**: Fire the main gun at a target within range.
|
||||
- **Load**: Load a round into the main gun. This is required before firing. (The gun starts the battle loaded.)
|
||||
- **Fire Anti-Infantry Weapon**: Fire the anti-infantry weapon at a target within range.
|
||||
- **Deploy Smoke**: Deploy smoke, blocking line of sight through a space until the end of the battle.
|
||||
- **Extinguish Fire**: Extinguish a fire on the tank.
|
||||
- **Call an Air Strike**: Call in an air strike. This can only be done once per battle.
|
||||
|
||||
### Firing the Main Turret Gun
|
||||
|
||||
Roll a die to determine if the shot hits. The player must roll equal to or higher than their accuracy score. If the shot hits, roll a die and add the round's strength. If the result is more than the target's armor on the the side it was hit, the target takes a penetrating hit. Otherwise, it's a glancing hit.
|
||||
|
||||
AT rounds have a strength of 6, HE rounds have a strength of 4.
|
||||
|
||||
### Inflicting Damage
|
||||
|
||||
A glancing hit wounds a crew member on a 4+. When a crew member is wounded, randomly select a living crew member to be wounded. If a wounded crew member is wounded again, they are killed.
|
||||
|
||||
A penetrating hit wounds a random crew member, and reduces the target's hull points by 1. If the target's hull points are reduced to 0, the tank is disabled -- it cannot perform any actions, and remains on the table.
|
||||
|
||||
A hit from an HE round can start a **Fire**. Roll a die. On a 5+, the tank is on fire. The tank's crew can use an action to extinguish the fire. If the fire is not extinguished, the tank loses 1 hull point at the end of each turn until the fire is extinguised.
|
||||
|
||||
At the end of every turn a disabled tank is on the table (including the turn it was disabled), roll a die. On a 4+, the ammunition cooks off. The tank is destroyed, and any units within 2 spaces of the tank are hit with an HE round with a strength of 4. The vehicle is replaced with a rubble terrain piece. If the tank's last hull point was lost to **Fire**, the ammunition cooks off immediately.
|
||||
|
||||
### Wounded Crew
|
||||
|
||||
If the Commander is wounded, the tank can perform 1 fewer action each turn. If the commander is killed, it can perform 2 fewer actions.
|
||||
|
||||
If the Gunner is wounded, the tank's accuracy is reduced by 1. If the gunner is killed, the tank cannot fire its weapons.
|
||||
|
||||
If the Loader is wounded, loading takes 2 action points. If the loader is killed, the tank cannot load its weapons (it can fire any remaining rounds that are already loaded, and any Anti-Infantry Weapons).
|
||||
|
||||
If the Driver is wounded, the tank's movement is reduced by 1. If the driver is killed, the tank cannot move.
|
||||
|
||||
If a Lieutenant Commander is replacing a killed crew member, they always performs the job of the crew member it is replacing as if that crew member was wounded, until the Lieutenant Commander is killed.
|
||||
|
||||
### Air Strike
|
||||
|
||||
Mark a space anywhere on the board. In the next turn, the player must roll a 6+ for the air strike to hit. On the following turn, it's a 5+, and then 4+, and so on. An air strike is never called on a roll of a 1.
|
||||
|
||||
When an air strike is carried out, the marked space is hit with an AT round with a strength of 6. Roll a die to determine the direction of the blast (1 is north, 2 is northeast, and so on). Then roll a die to determine the distance of the blast (1 is 1 space, 2 is 2 spaces, and so on). Each of those spaces are also hit with an AT round with a strength of 6.
|
||||
|
||||
### Terrain
|
||||
|
||||
- **Open Terrain**: No effect on movement or line of sight. This can be a road, or grass. Most of the board is open terrain.
|
||||
- **Mud**: You must spend 2 action points to move out of a mud space. This can be a swamp, or a field.
|
||||
- **Rubble**: You must spend 2 action points to move out of a rubble space. This can be a destroyed building, or the remains of an exploded tank.
|
||||
- **Hill**: When a tank is immediately behind a hill space, enemy accuracy is -1. When a tank is on a hill space, all hits against it are taken against the rear armor value.
|
||||
- **Forest**: When a tank is in or behind a forest space, enemy accuracy is -1.
|
||||
- **Building**: Buildings are impassable terrain. Tanks can fire rounds at buildings to turn them into rubble.
|
||||
- **Mines**: Tanks moving over mined spaces take an AT hit with a strength of 6. The mine is then removed from the board.
|
||||
|
||||
### Other Units
|
||||
|
||||
#### Infantry
|
||||
|
||||
Some battles may include infantry units. Infantry units can move 2 spaces, and can fire at tanks within 2 spaces. Infantry units have an armor value of 2, and a hull point value of 1. Infantry units can be destroyed by a hit from any main gun, or by an Anti-Infantry Weapon. Infantry can't be targeted if they are in an adjacent space to a friendly tank.
|
||||
|
||||
| Armor | Movement | Accuracy | Hull Points | Actions |
|
||||
|-------|----------|----------|-------------|---------|
|
||||
| 3/3/3 | 2 | 4+ | 1 | 3 |
|
||||
|
||||
Infantry units are equipped with Anti-Infantry Weapons with a range of 2 spaces, and a missile launcher with AT and HE rounds and a range of 3 spaces.
|
||||
|
||||
Infantry can take the following actions when activated:
|
||||
|
||||
- **Move**: Move the infantry unit one space in any direction.
|
||||
- **Fire Missile Launcher**: Fire the missile launcher at a target within range, using either AT or HE rounds. (Rounds do not need to be loaded first)
|
||||
- **Fire Anti-Infantry Weapon**: Fire the anti-infantry weapon at an infantry target within range.
|
||||
- **Take Cover**: Enemies shooting this unit have -1 accuracy until the next turn. The unit cannot move or fire while in cover.
|
||||
- **Capture Objective**: Capture an objective. The unit must share the space with the objective to capture it. They don't need to remain on the space to hold it.
|
||||
- **Disarm Mines**: Remove an adjacent mine space from the board.
|
||||
- **Mount Up / Dismount**: Infantry units can mount or dismount from a tank. They can only mount or dismount once per turn.
|
||||
- Infantry can ride on the outside of tanks. If the tank takes any hits while infantry are mounted on the outside, they are destroyed.
|
||||
- Infantry can ride inside Armored Personnel Carriers (APCs). See below.
|
||||
|
||||
### Armored Personnel Carriers (APCs)
|
||||
|
||||
| Armor | Movement | Accuracy | Hull Points | Actions |
|
||||
|-------|----------|----------|-------------|---------|
|
||||
| 4/4/4 | 3 | 4+ | 2 | 3 |
|
||||
|
||||
APCs are equipped with Anti-Infantry Weapons with a range of 3 spaces.
|
||||
|
||||
APCs have 4 upgrade points to spend at the beginning of the battle:
|
||||
|
||||
- **Armor**: Increases the armor of the tank by 1 point. Costs 1 upgrade point per armor point, to a max of 1 per facing.
|
||||
- Side armor cannot exceed front armor.
|
||||
- Rear armor cannot exceed side armor.
|
||||
- **Engine Upgrade**: Increases the movement range of the tank by 1. Costs 1 upgrade point.
|
||||
- **Smoke Launcher**: Allows the tank to deploy smoke, blocking line of sight through one space within a range of 2 spaces. Costs 1 upgrade point.
|
||||
|
||||
APCs can take the following actions when activated:
|
||||
|
||||
- **Move**: Move the APC forward one space.
|
||||
- **Turn**: Rotate to the left or right 60 degrees.
|
||||
- **Fire Anti-Infantry Weapon**: Fire the anti-infantry weapon at a target within range.
|
||||
- **Deploy Smoke**: Deploy smoke, blocking line of sight through a space until the end of the battle.
|
||||
- **Extinguish Fire**: Extinguish a fire on the tank.
|
||||
72
frontfirecone.svg
Normal file
72
frontfirecone.svg
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg viewBox="0 0 500 500" xmlns="http://www.w3.org/2000/svg" xmlns:bx="https://boxy-svg.com">
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 72.564361572266, 115.684906005859)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<g transform="matrix(1, 0, 0, 1, 94.0273208618164, 0.7923389077186656)">
|
||||
<g>
|
||||
<rect x="153.909" y="319.606" width="18.598" height="30.579" style="fill: rgb(216, 216, 216); stroke: rgb(80, 80, 80);"/>
|
||||
<rect x="162.181" y="317.83" width="2.312" height="10.645" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0);"/>
|
||||
</g>
|
||||
<ellipse style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0);" cx="163.45" cy="333.159" rx="5.494" ry="5.494"/>
|
||||
</g>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 107.926193237305, 94.576019287109)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 72.456970214844, 74.283020019531)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 108.320693969727, 53.447692871094)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 72.786117553711, 33.03042602539)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 36.666900634766, 94.590698242188)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 37.133987426758, 53.52791595459)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 179.838729858399, 11.744064331055)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 144.369491577149, -8.549722671509)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 180.233184814453, -29.38677406311)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 108.579437255859, 11.758056640625)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 109.046493530273, -29.306520462036)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 72.982391357422, -8.730068206787)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 37.513153076172, -29.023822784424)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 73.376861572266, -49.860004425049)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 1.723052978516, -8.716121673584)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 2.190139770508, -49.780666351318)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 1.082901000976, 74.549201965332)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -34.386337280273, 54.257308959961)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 1.47737121582, 33.421157836914)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -69.709335327148, 33.499778747559)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 179.392364501953, 53.482643127441)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 215.256057739258, 32.648300170898)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 143.602264404297, 73.791412353516)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 144.069366455078, 32.725898742676)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 287.323669433594, -8.413150787353)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 251.854400634766, -28.707685470581)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 287.718139648437, -49.543090820313)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 216.064315795899, -8.398746490478)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 216.531433105469, -49.462089538574)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 181.080062866211, -70.99471282959)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 145.610824584961, -91.288467407227)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 181.474533081055, -112.124649047852)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 109.820739746094, -70.980735778809)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 73.343597412109, -91.548049926758)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 37.874359130859, -111.841812133789)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 73.738067626953, -132.677993774414)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 2.084243774414, -91.533172607422)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 2.551345825195, -132.596908569336)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -34.448959350586, 12.540504455567)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -69.918182373047, -7.753044128418)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -34.054443359375, -28.589248657227)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -105.708267211914, 12.554634094238)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -105.241149902344, -28.509117126465)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -34.204940795898, -70.26383972168)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -69.674179077149, -90.557914733887)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -33.810470581055, -111.395576477051)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -105.464279174805, -70.250747680664)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 38.206573486328, -153.26708984375)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 145.556182861328, -133.17399597168)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 110.028015136719, -154.41584777832)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 252.164947509766, -70.543487548828)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -69.507247924805, -49.396728515625)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 37.958541870117, -69.872467041016)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 37.049331665039, 12.481285095215)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 109.505111694336, -112.44287109375)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 144.895080566406, -49.949069976807)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 216.663848876953, -91.004447937012)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 73.461441040039, -174.554809570312)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 251.936630249023, 12.683601379395)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -141.451156616211, -8.559062957763)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -141.056671142578, -49.688972473145)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 22 KiB |
70
sidefirecone.svg
Normal file
70
sidefirecone.svg
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg viewBox="0 0 500 500" xmlns="http://www.w3.org/2000/svg" xmlns:bx="https://boxy-svg.com">
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 72.564361572266, 115.684906005859)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<g transform="matrix(1, 0, 0, 1, 94.0273208618164, 0.7923389077186656)">
|
||||
<rect x="153.909" y="319.606" width="18.598" height="30.579" style="fill: rgb(216, 216, 216); stroke: rgb(80, 80, 80); transform-box: fill-box; transform-origin: 50% 50%;" transform="matrix(0.5, 0.866025, -0.866025, 0.5, 0.00015, -0.000058)"/>
|
||||
<rect x="162.181" y="317.83" width="2.312" height="10.645" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0);"/>
|
||||
<ellipse style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0);" cx="163.45" cy="333.159" rx="5.494" ry="5.494"/>
|
||||
</g>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 107.926193237305, 94.576019287109)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 72.456970214844, 74.283020019531)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 108.320693969727, 53.447692871094)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 72.786117553711, 33.03042602539)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 36.666900634766, 94.590698242188)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 37.133987426758, 53.52791595459)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 179.838729858399, 11.744064331055)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 144.369491577149, -8.549722671509)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 180.233184814453, -29.38677406311)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 108.579437255859, 11.758056640625)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 109.046493530273, -29.306520462036)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 72.982391357422, -8.730068206787)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 37.513153076172, -29.023822784424)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 73.376861572266, -49.860004425049)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 1.723052978516, -8.716121673584)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 2.190139770508, -49.780666351318)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 1.082901000976, 74.549201965332)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -34.386337280273, 54.257308959961)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 1.47737121582, 33.421157836914)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -69.709335327148, 33.499778747559)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 179.392364501953, 53.482643127441)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 215.256057739258, 32.648300170898)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 143.602264404297, 73.791412353516)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 144.069366455078, 32.725898742676)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 287.323669433594, -8.413150787353)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 251.854400634766, -28.707685470581)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 287.718139648437, -49.543090820313)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 216.064315795899, -8.398746490478)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 216.531433105469, -49.462089538574)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 181.080062866211, -70.99471282959)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 145.610824584961, -91.288467407227)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 181.474533081055, -112.124649047852)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 109.820739746094, -70.980735778809)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 73.343597412109, -91.548049926758)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 37.874359130859, -111.841812133789)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 73.738067626953, -132.677993774414)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 2.084243774414, -91.533172607422)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 2.551345825195, -132.596908569336)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -34.448959350586, 12.540504455567)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -69.918182373047, -7.753044128418)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -34.054443359375, -28.589248657227)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -105.708267211914, 12.554634094238)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -105.241149902344, -28.509117126465)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -34.204940795898, -70.26383972168)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -69.674179077149, -90.557914733887)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -33.810470581055, -111.395576477051)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -105.464279174805, -70.250747680664)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 38.206573486328, -153.26708984375)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 145.556182861328, -133.17399597168)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 110.028015136719, -154.41584777832)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 252.164947509766, -70.543487548828)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -69.507247924805, -49.396728515625)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 37.958541870117, -69.872467041016)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 37.049331665039, 12.481285095215)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 109.505111694336, -112.44287109375)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 144.895080566406, -49.949069976807)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 216.663848876953, -91.004447937012)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 73.461441040039, -174.554809570312)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 251.936630249023, 12.683601379395)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -141.451156616211, -8.559062957763)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -141.056671142578, -49.688972473145)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 22 KiB |
74
sidefiringexample.svg
Normal file
74
sidefiringexample.svg
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg viewBox="0 0 500 500" xmlns="http://www.w3.org/2000/svg" xmlns:bx="https://boxy-svg.com">
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 72.564361572266, 115.684906005859)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 107.926193237305, 94.576019287109)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 72.456970214844, 74.283020019531)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 108.320693969727, 53.447692871094)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 72.786117553711, 33.03042602539)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 36.666900634766, 94.590698242188)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 37.133987426758, 53.52791595459)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 179.838729858399, 11.744064331055)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 144.369491577149, -8.549722671509)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 180.233184814453, -29.38677406311)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 108.579437255859, 11.758056640625)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 109.046493530273, -29.306520462036)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 72.982391357422, -8.730068206787)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 37.513153076172, -29.023822784424)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 1.723052978516, -8.716121673584)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 2.190139770508, -49.780666351318)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 1.082901000976, 74.549201965332)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -34.386337280273, 54.257308959961)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 1.47737121582, 33.421157836914)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -69.709335327148, 33.499778747559)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 179.392364501953, 53.482643127441)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 215.256057739258, 32.648300170898)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 143.602264404297, 73.791412353516)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 144.069366455078, 32.725898742676)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 287.323669433594, -8.413150787353)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 251.854400634766, -28.707685470581)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 287.718139648437, -49.543090820313)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 216.064315795899, -8.398746490478)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 216.531433105469, -49.462089538574)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 181.080062866211, -70.99471282959)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 145.610824584961, -91.288467407227)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 181.474533081055, -112.124649047852)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 109.820739746094, -70.980735778809)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 73.343597412109, -91.548049926758)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 37.874359130859, -111.841812133789)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 73.738067626953, -132.677993774414)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 2.084243774414, -91.533172607422)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 2.551345825195, -132.596908569336)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -34.448959350586, 12.540504455567)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -69.918182373047, -7.753044128418)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -34.054443359375, -28.589248657227)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -105.708267211914, 12.554634094238)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -105.241149902344, -28.509117126465)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -34.204940795898, -70.26383972168)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -69.674179077149, -90.557914733887)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -33.810470581055, -111.395576477051)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -105.464279174805, -70.250747680664)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 38.206573486328, -153.26708984375)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 145.556182861328, -133.17399597168)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 110.028015136719, -154.41584777832)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 252.164947509766, -70.543487548828)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -69.507247924805, -49.396728515625)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 37.958541870117, -69.872467041016)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 37.049331665039, 12.481285095215)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 109.505111694336, -112.44287109375)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 144.895080566406, -49.949069976807)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 216.663848876953, -91.004447937012)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 73.461441040039, -174.554809570312)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 251.936630249023, 12.683601379395)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -141.451156616211, -8.559062957763)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(186, 218, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, -141.056671142578, -49.688972473145)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<path d="M 184.777 194.78 L 205.456 206.719 L 205.456 230.597 L 184.777 242.536 L 164.098 230.597 L 164.098 206.719 Z" style="stroke: rgb(0, 0, 0); fill: rgb(218, 114, 85); transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 73.813690185547, -50.232002258301)" bx:shape="n-gon 184.777 218.658 23.878 23.878 6 0 1@0639ac8a"/>
|
||||
<rect x="153.909" y="319.606" width="18.598" height="30.579" style="fill: rgb(216, 216, 216); stroke: rgb(80, 80, 80); transform-origin: 163.208px 334.895px;" transform="matrix(0.5, 0.866025090218, -0.866025090218, 0.5, 94.027450060736, 0.792299254488)"/>
|
||||
<rect x="256.208" y="318.622" width="2.312" height="10.645" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0);"/>
|
||||
<ellipse style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0);" cx="257.477" cy="333.951" rx="5.494" ry="5.494"/>
|
||||
<g transform="matrix(1, 0, 0, 1, 129.45098876953125, -18.515073776245114)">
|
||||
<rect x="153.909" y="319.606" width="18.598" height="30.579" style="fill: rgb(216, 216, 216); stroke: rgb(80, 80, 80); transform-origin: 163.208px 334.895px;" transform="matrix(0.5, 0.866025, -0.866025, 0.5, 1.472912, -167.281603)"/>
|
||||
<rect x="163.654" y="150.549" width="2.312" height="10.645" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0);"/>
|
||||
<ellipse style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0);" cx="164.923" cy="165.878" rx="5.494" ry="5.494"/>
|
||||
</g>
|
||||
<line style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0);" x1="257.763" y1="334.257" x2="294.643" y2="147.369"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 22 KiB |
13
sides.svg
Normal file
13
sides.svg
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg viewBox="0 0 500 500" xmlns="http://www.w3.org/2000/svg" xmlns:bx="https://boxy-svg.com">
|
||||
<path d="M 184.777 116.999 L 272.816 167.829 L 272.816 269.487 L 184.777 320.317 L 96.738 269.488 L 96.738 167.828 Z" style="stroke: rgb(0, 0, 0); fill: none; transform-origin: 184.777px 218.658px;" transform="matrix(0, 1, -1, 0, 55.80110168457, 48.324974060059)" bx:shape="n-gon 184.777 218.658 101.659 101.659 6 0 1@19ed45ac"/>
|
||||
<text style="white-space: pre; fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 28px;" x="205.559" y="172.444">Front</text>
|
||||
<text style="white-space: pre; fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 28px;" x="106.769" y="225.872">Side</text>
|
||||
<text style="white-space: pre; fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 28px;" x="315.225" y="221.747">Side</text>
|
||||
<text style="white-space: pre; fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 28px;" x="105.72" y="324.269">Side</text>
|
||||
<text style="white-space: pre; fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 28px;" x="320.061" y="325.929">Side</text>
|
||||
<text style="white-space: pre; fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 28px;" x="207.37" y="379.976">Rear</text>
|
||||
<rect x="202.739" y="204.24" width="79.179" height="130.186" style="fill: rgb(216, 216, 216); stroke: rgb(80, 80, 80);"/>
|
||||
<ellipse style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0);" cx="243.359" cy="261.942" rx="23.391" ry="23.391"/>
|
||||
<rect x="237.954" y="196.681" width="9.845" height="45.322" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0);"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
Loading…
Add table
Add a link
Reference in a new issue