meander fill: more work
|
@ -233,6 +233,15 @@ class Debug(object):
|
|||
INKSCAPE_LABEL: name
|
||||
}))
|
||||
|
||||
@check_enabled
|
||||
def log_point(self, point, name="point", color=None):
|
||||
self.log_svg_element(etree.Element("circle", {
|
||||
"cx": str(point.x),
|
||||
"cy": str(point.y),
|
||||
"r": "1",
|
||||
"style": str(inkex.Style({"fill": "#000000"})),
|
||||
}))
|
||||
|
||||
@check_enabled
|
||||
def log_graph(self, graph, name="Graph", color=None):
|
||||
d = ""
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
import logging
|
||||
import math
|
||||
import numpy as np
|
||||
import re
|
||||
import sys
|
||||
import traceback
|
||||
|
@ -142,7 +143,7 @@ class FillStitch(EmbroideryElement):
|
|||
@property
|
||||
@param('smoothness_mm', _('Smoothness'),
|
||||
tooltip=_(
|
||||
'Smooth the stitch path. Smoothness limits how far the smoothed stitch path ' +
|
||||
'Smooth the stitch path. Smoothness limits approximately how far the smoothed stitch path ' +
|
||||
'is allowed to deviate from the original path. Hint: a lower stitchc tolerance may be needed too.'
|
||||
),
|
||||
type='integer',
|
||||
|
@ -159,11 +160,21 @@ class FillStitch(EmbroideryElement):
|
|||
return self.get_boolean_param('clockwise', True)
|
||||
|
||||
@property
|
||||
@param('meander_pattern', _('Meander Pattern'), type='dropdown', default=0,
|
||||
@param('meander_pattern', _('Meander Pattern'), type='select', default=0,
|
||||
options=[tile.name for tile in tiles.all_tiles()], select_items=[('fill_method', 4)], sort_index=3)
|
||||
def meander_pattern(self):
|
||||
return self.get_param('meander_pattern', None)
|
||||
|
||||
@property
|
||||
@param('meander_scale_percent', _('Meander pattern scale'), type='float', unit="%", default=100, select_items=[('fill_method', 4)], sort_index=4)
|
||||
def meander_scale(self):
|
||||
return np.maximum(self.get_split_float_param('meander_scale_percent', (100, 100)), (10, 10)) / 100
|
||||
|
||||
@property
|
||||
@param('meander_padding_mm', _('Meander padding'), type='float', unit="mm", default=0, select_items=[('fill_method', 4)], sort_index=5)
|
||||
def meander_padding(self):
|
||||
return self.get_float_param('meander_padding_mm', 0)
|
||||
|
||||
@property
|
||||
@param('angle',
|
||||
_('Angle of lines of stitches'),
|
||||
|
@ -593,7 +604,7 @@ class FillStitch(EmbroideryElement):
|
|||
stitch_groups.extend(underlay_stitch_groups)
|
||||
|
||||
fill_shapes = self.fill_shape(shape)
|
||||
for fill_shape in fill_shapes.geoms:
|
||||
for i, fill_shape in enumerate(fill_shapes.geoms):
|
||||
if self.fill_method == 0:
|
||||
stitch_groups.extend(self.do_auto_fill(fill_shape, previous_stitch_group, start, end))
|
||||
if self.fill_method == 1:
|
||||
|
@ -601,7 +612,7 @@ class FillStitch(EmbroideryElement):
|
|||
elif self.fill_method == 2:
|
||||
stitch_groups.extend(self.do_guided_fill(fill_shape, previous_stitch_group, start, end))
|
||||
elif self.fill_method == 4:
|
||||
stitch_groups.extend(self.do_meander_fill(fill_shape, start, end))
|
||||
stitch_groups.extend(self.do_meander_fill(fill_shape, i, start, end))
|
||||
except ExitThread:
|
||||
raise
|
||||
except Exception:
|
||||
|
@ -733,11 +744,11 @@ class FillStitch(EmbroideryElement):
|
|||
))
|
||||
return [stitch_group]
|
||||
|
||||
def do_meander_fill(self, shape, starting_point, ending_point):
|
||||
def do_meander_fill(self, shape, i, starting_point, ending_point):
|
||||
stitch_group = StitchGroup(
|
||||
color=self.color,
|
||||
tags=("meander_fill", "meander_fill_top"),
|
||||
stitches=meander_fill(self, shape, starting_point, ending_point))
|
||||
stitches=meander_fill(self, shape, i, starting_point, ending_point))
|
||||
return [stitch_group]
|
||||
|
||||
@cache
|
||||
|
|
|
@ -190,8 +190,13 @@ class ParamsTab(ScrolledPanel):
|
|||
try:
|
||||
values[name] = input.GetValue()
|
||||
except AttributeError:
|
||||
# dropdown
|
||||
values[name] = input.GetSelection()
|
||||
param = self.dict_of_choices[name]['param']
|
||||
if param.type == 'dropdown':
|
||||
# dropdown
|
||||
values[name] = input.GetSelection()
|
||||
elif param.type == 'select':
|
||||
selection = input.GetSelection()
|
||||
values[name] = param.options[selection]
|
||||
|
||||
return values
|
||||
|
||||
|
@ -368,9 +373,17 @@ class ParamsTab(ScrolledPanel):
|
|||
input.SetValue(param.values[0])
|
||||
|
||||
input.Bind(wx.EVT_CHECKBOX, self.changed)
|
||||
elif param.type == 'dropdown':
|
||||
elif param.type in ('dropdown', 'select'):
|
||||
input = wx.Choice(self, wx.ID_ANY, choices=param.options)
|
||||
input.SetSelection(int(param.values[0]))
|
||||
|
||||
if param.type == 'dropdown':
|
||||
input.SetSelection(int(param.values[0]))
|
||||
else:
|
||||
try:
|
||||
input.SetSelection(param.options.index(param.values[0]))
|
||||
except ValueError:
|
||||
input.SetSelection(param.default)
|
||||
|
||||
input.Bind(wx.EVT_CHOICE, self.changed)
|
||||
input.Bind(wx.EVT_CHOICE, self.update_choice_state)
|
||||
self.dict_of_choices[param.name] = {
|
||||
|
|
|
@ -1,21 +1,33 @@
|
|||
import networkx as nx
|
||||
from shapely.geometry import MultiPoint, Point
|
||||
from shapely.ops import nearest_points
|
||||
import networkx as nx
|
||||
|
||||
from .running_stitch import running_stitch
|
||||
from .. import tiles
|
||||
from ..debug import debug
|
||||
from ..stitch_plan import Stitch
|
||||
from ..utils import smooth_path
|
||||
from ..utils.geometry import Point as InkStitchPoint
|
||||
from ..utils.list import poprandom
|
||||
from ..utils.prng import iter_uniform_floats
|
||||
|
||||
|
||||
def meander_fill(fill, shape, starting_point, ending_point):
|
||||
def meander_fill(fill, shape, shape_index, starting_point, ending_point):
|
||||
debug.log(f"meander pattern: {fill.meander_pattern}")
|
||||
tile = get_tile(fill.meander_pattern)
|
||||
if not tile:
|
||||
return []
|
||||
|
||||
graph = tile.to_graph(shape)
|
||||
start, end = find_starting_and_ending_nodes(graph, starting_point, ending_point)
|
||||
debug.log(f"tile name: {tile.name}")
|
||||
|
||||
return generate_meander_path(graph, start, end)
|
||||
# debug.log_line_strings(ensure_geometry_collection(shape.boundary).geoms, 'Meander shape')
|
||||
graph = tile.to_graph(shape, fill.meander_scale, fill.meander_padding)
|
||||
# debug.log_graph(graph, 'Meander graph')
|
||||
# debug.log(f"graph connected? {nx.is_connected(graph)}")
|
||||
start, end = find_starting_and_ending_nodes(graph, shape, starting_point, ending_point)
|
||||
rng = iter_uniform_floats(fill.random_seed, 'meander-fill', shape_index)
|
||||
|
||||
return post_process(generate_meander_path(graph, start, end, rng), fill)
|
||||
|
||||
|
||||
def get_tile(tile_name):
|
||||
|
@ -27,7 +39,16 @@ def get_tile(tile_name):
|
|||
return None
|
||||
|
||||
|
||||
def find_starting_and_ending_nodes(graph, starting_point, ending_point):
|
||||
def find_starting_and_ending_nodes(graph, shape, starting_point, ending_point):
|
||||
if starting_point is None:
|
||||
starting_point = shape.exterior.coords[0]
|
||||
starting_point = Point(starting_point)
|
||||
|
||||
if ending_point is None:
|
||||
ending_point = starting_point
|
||||
else:
|
||||
ending_point = Point(ending_point)
|
||||
|
||||
all_points = MultiPoint(list(graph))
|
||||
|
||||
starting_node = nearest_points(starting_point, all_points)[1].coords[0]
|
||||
|
@ -49,7 +70,8 @@ def find_initial_path(graph, start, end):
|
|||
return nx.shortest_path(graph, start, end)
|
||||
|
||||
|
||||
def generate_meander_path(graph, start, end):
|
||||
@debug.time
|
||||
def generate_meander_path(graph, start, end, rng):
|
||||
path = find_initial_path(graph, start, end)
|
||||
path_edges = list(zip(path[:-1], path[1:]))
|
||||
graph.remove_edges_from(path_edges)
|
||||
|
@ -59,15 +81,16 @@ def generate_meander_path(graph, start, end):
|
|||
meander_path = path_edges
|
||||
while edges_to_consider:
|
||||
while edges_to_consider:
|
||||
edge = poprandom(edges_to_consider)
|
||||
edge = poprandom(edges_to_consider, rng)
|
||||
edges_to_consider.extend(replace_edge(meander_path, edge, graph, graph_nodes))
|
||||
|
||||
edge_pairs = list(zip(path[:-1], path[1:]))
|
||||
edge_pairs = list(zip(meander_path[:-1], meander_path[1:]))
|
||||
while edge_pairs:
|
||||
edge1, edge2 = poprandom(edge_pairs)
|
||||
edge1, edge2 = poprandom(edge_pairs, rng)
|
||||
edges_to_consider.extend(replace_edge_pair(meander_path, edge1, edge2, graph, graph_nodes))
|
||||
break
|
||||
|
||||
return meander_path
|
||||
return path_to_points(meander_path)
|
||||
|
||||
|
||||
def replace_edge(path, edge, graph, graph_nodes):
|
||||
|
@ -81,8 +104,9 @@ def replace_edge(path, edge, graph, graph_nodes):
|
|||
i = path.index(edge)
|
||||
path[i:i + 1] = new_path
|
||||
graph.remove_edges_from(new_path)
|
||||
# do I need to remove the last one too?
|
||||
graph_nodes.difference_update(start for start, end in new_path)
|
||||
debug.log(f"found new path of length {len(new_path)} at position {i}")
|
||||
# debug.log(f"found new path of length {len(new_path)} at position {i}")
|
||||
|
||||
return new_path
|
||||
|
||||
|
@ -98,7 +122,29 @@ def replace_edge_pair(path, edge1, edge2, graph, graph_nodes):
|
|||
i = path.index(edge1)
|
||||
path[i:i + 2] = new_path
|
||||
graph.remove_edges_from(new_path)
|
||||
# do I need to remove the last one too?
|
||||
graph_nodes.difference_update(start for start, end in new_path)
|
||||
debug.log(f"found new pair path of length {len(new_path)} at position {i}")
|
||||
# debug.log(f"found new pair path of length {len(new_path)} at position {i}")
|
||||
|
||||
return new_path
|
||||
|
||||
|
||||
@debug.time
|
||||
def post_process(points, fill):
|
||||
debug.log(f"smoothness: {fill.smoothness}")
|
||||
# debug.log_line_string(LineString(points), "pre-smoothed", "#FF0000")
|
||||
smoothed_points = smooth_path(points, fill.smoothness)
|
||||
smoothed_points = [InkStitchPoint.from_tuple(point) for point in smoothed_points]
|
||||
|
||||
stitches = running_stitch(smoothed_points, fill.running_stitch_length, fill.running_stitch_tolerance)
|
||||
stitches = [Stitch(point) for point in stitches]
|
||||
|
||||
return stitches
|
||||
|
||||
|
||||
def path_to_points(path):
|
||||
points = [start for start, end in path]
|
||||
if path:
|
||||
points.append(path[-1][1])
|
||||
|
||||
return points
|
||||
|
|
|
@ -70,6 +70,8 @@ inkstitch_attribs = [
|
|||
'clockwise',
|
||||
'reverse',
|
||||
'meander_pattern',
|
||||
'meander_scale_percent',
|
||||
'meander_padding_mm',
|
||||
'expand_mm',
|
||||
'fill_underlay',
|
||||
'fill_underlay_angle',
|
||||
|
|
119
lib/tiles.py
|
@ -1,15 +1,15 @@
|
|||
import inkex
|
||||
from math import ceil, floor
|
||||
from networkx import Graph
|
||||
import os
|
||||
from math import ceil, floor
|
||||
|
||||
import inkex
|
||||
import lxml
|
||||
from networkx import Graph
|
||||
from shapely.geometry import LineString
|
||||
from shapely.prepared import prep
|
||||
|
||||
from .debug import debug
|
||||
from .svg import apply_transforms
|
||||
from .svg.tags import SODIPODI_NAMEDVIEW
|
||||
from .utils import cache, get_bundled_dir, guess_inkscape_config_path, Point
|
||||
from random import random
|
||||
from .utils import Point, cache, get_bundled_dir, guess_inkscape_config_path
|
||||
|
||||
|
||||
class Tile:
|
||||
|
@ -33,11 +33,7 @@ class Tile:
|
|||
__str__ = __repr__
|
||||
|
||||
def _get_name(self, tile_svg, tile_path):
|
||||
name = tile_svg.get(SODIPODI_NAMEDVIEW)
|
||||
if name:
|
||||
return name
|
||||
else:
|
||||
return os.path.splitext(os.path.basename(tile_path))[0]
|
||||
return os.path.splitext(os.path.basename(tile_path)[0])
|
||||
|
||||
def _load(self):
|
||||
self._load_paths(self.tile_svg)
|
||||
|
@ -46,39 +42,35 @@ class Tile:
|
|||
self._load_parallelogram(self.tile_svg)
|
||||
|
||||
def _load_paths(self, tile_svg):
|
||||
if self.tile is None:
|
||||
path_elements = tile_svg.findall('.//svg:path', namespaces=inkex.NSS)
|
||||
self.tile = self._path_elements_to_line_strings(path_elements)
|
||||
# self.center, ignore, ignore = self._get_center_and_dimensions(self.tile)
|
||||
path_elements = tile_svg.findall('.//svg:path', namespaces=inkex.NSS)
|
||||
self.tile = self._path_elements_to_line_strings(path_elements)
|
||||
# self.center, ignore, ignore = self._get_center_and_dimensions(self.tile)
|
||||
|
||||
def _load_dimensions(self, tile_svg):
|
||||
if self.width is None:
|
||||
svg_element = tile_svg.getroot()
|
||||
self.width = svg_element.viewport_width
|
||||
self.height = svg_element.viewport_height
|
||||
svg_element = tile_svg.getroot()
|
||||
self.width = svg_element.viewport_width
|
||||
self.height = svg_element.viewport_height
|
||||
|
||||
def _load_buffer_size(self, tile_svg):
|
||||
if self.buffer_size is None:
|
||||
circle_elements = tile_svg.findall('.//svg:circle', namespaces=inkex.NSS)
|
||||
if circle_elements:
|
||||
self.buffer_size = circle_elements[0].radius
|
||||
else:
|
||||
self.buffer_size = 0
|
||||
circle_elements = tile_svg.findall('.//svg:circle', namespaces=inkex.NSS)
|
||||
if circle_elements:
|
||||
self.buffer_size = circle_elements[0].radius
|
||||
else:
|
||||
self.buffer_size = 0
|
||||
|
||||
def _load_parallelogram(self, tile_svg):
|
||||
if self.shift0 is None:
|
||||
parallelogram_elements = tile_svg.findall(".//svg:*[@class='para']", namespaces=inkex.NSS)
|
||||
if parallelogram_elements:
|
||||
path_element = parallelogram_elements[0]
|
||||
path = apply_transforms(path_element.get_path(), path_element)
|
||||
subpaths = path.to_superpath()
|
||||
subpath = subpaths[0]
|
||||
points = [Point.from_tuple(p[1]) for p in subpath]
|
||||
self.shift0 = points[1] - points[0]
|
||||
self.shift1 = points[2] - points[1]
|
||||
else:
|
||||
self.shift0 = Point(self.width, 0)
|
||||
self.shift1 = Point(0, self.height)
|
||||
parallelogram_elements = tile_svg.findall(".//svg:*[@class='para']", namespaces=inkex.NSS)
|
||||
if parallelogram_elements:
|
||||
path_element = parallelogram_elements[0]
|
||||
path = apply_transforms(path_element.get_path(), path_element)
|
||||
subpaths = path.to_superpath()
|
||||
subpath = subpaths[0]
|
||||
points = [Point.from_tuple(p[1]) for p in subpath]
|
||||
self.shift0 = points[1] - points[0]
|
||||
self.shift1 = points[2] - points[1]
|
||||
else:
|
||||
self.shift0 = Point(self.width, 0)
|
||||
self.shift1 = Point(0, self.height)
|
||||
|
||||
def _path_elements_to_line_strings(self, path_elements):
|
||||
lines = []
|
||||
|
@ -109,8 +101,19 @@ class Tile:
|
|||
|
||||
return translated_tile
|
||||
|
||||
def _scale(self, x_scale, y_scale):
|
||||
self.shift0 = self.shift0.scale(x_scale, y_scale)
|
||||
self.shift1 = self.shift1.scale(x_scale, y_scale)
|
||||
|
||||
scaled_tile = []
|
||||
for start, end in self.tile:
|
||||
start = start.scale(x_scale, y_scale)
|
||||
end = end.scale(x_scale, y_scale)
|
||||
scaled_tile.append((start, end))
|
||||
self.tile = scaled_tile
|
||||
|
||||
@debug.time
|
||||
def to_graph(self, shape, only_inside=True, pad=True):
|
||||
def to_graph(self, shape, scale, buffer=None):
|
||||
"""Apply this tile to a shape, repeating as necessary.
|
||||
|
||||
Return value:
|
||||
|
@ -119,27 +122,36 @@ class Tile:
|
|||
representation of this edge.
|
||||
"""
|
||||
self._load()
|
||||
x_scale, y_scale = scale
|
||||
self._scale(x_scale, y_scale)
|
||||
|
||||
shape_center, shape_width, shape_height = self._get_center_and_dimensions(shape)
|
||||
shape_diagonal = (shape_width ** 2 + shape_height ** 2) ** 0.5
|
||||
shape_diagonal = Point(shape_width, shape_height).length()
|
||||
|
||||
if not buffer:
|
||||
average_scale = (x_scale + y_scale) / 2
|
||||
buffer = self.buffer_size * average_scale
|
||||
|
||||
contracted_shape = shape.buffer(-buffer)
|
||||
prepared_shape = prep(contracted_shape)
|
||||
|
||||
# debug.log_line_string(contracted_shape.exterior, "contracted shape")
|
||||
|
||||
return self._generate_graph(prepared_shape, shape_center, shape_diagonal)
|
||||
|
||||
def _generate_graph(self, shape, shape_center, shape_diagonal):
|
||||
graph = Graph()
|
||||
|
||||
if pad:
|
||||
shape = shape.buffer(-self.buffer_size)
|
||||
|
||||
prepared_shape = prep(shape)
|
||||
|
||||
tiles0 = ceil(shape_diagonal / self.shift0.length()) + 2
|
||||
tiles1 = ceil(shape_diagonal / self.shift1.length()) + 2
|
||||
for repeat0 in range(floor(-tiles0 / 2), ceil(tiles0 / 2)):
|
||||
for repeat1 in range(floor(-tiles1 / 2), ceil(tiles1 / 2)):
|
||||
shift0 = repeat0 * self.shift0 + shape_center
|
||||
shift1 = repeat1 * self.shift1 + shape_center
|
||||
this_tile = self._translate_tile(shift0 + shift1)
|
||||
shift0 = repeat0 * self.shift0
|
||||
shift1 = repeat1 * self.shift1
|
||||
this_tile = self._translate_tile(shift0 + shift1 + shape_center)
|
||||
for line in this_tile:
|
||||
line_string = LineString(line)
|
||||
if not only_inside or prepared_shape.contains(line_string):
|
||||
graph.add_edge(line[0], line[1], line_string=line_string, weight=random() + 0.1)
|
||||
if shape.contains(line_string):
|
||||
graph.add_edge(line[0], line[1])
|
||||
|
||||
return graph
|
||||
|
||||
|
@ -155,7 +167,10 @@ def all_tiles():
|
|||
for tile_dir in all_tile_paths():
|
||||
try:
|
||||
for tile_file in sorted(os.listdir(tile_dir)):
|
||||
tiles.append(Tile(os.path.join(tile_dir, tile_file)))
|
||||
try:
|
||||
tiles.append(Tile(os.path.join(tile_dir, tile_file)))
|
||||
except (OSError, lxml.etree.XMLSyntaxError):
|
||||
pass
|
||||
except FileNotFoundError:
|
||||
pass
|
||||
|
||||
|
|
|
@ -166,7 +166,7 @@ def _remove_duplicate_coordinates(coords_array):
|
|||
return coords_array[keepers]
|
||||
|
||||
|
||||
def smooth_path(path, smoothness=100.0):
|
||||
def smooth_path(path, smoothness=1.0):
|
||||
"""Smooth a path of coordinates.
|
||||
|
||||
Arguments:
|
||||
|
@ -178,6 +178,11 @@ def smooth_path(path, smoothness=100.0):
|
|||
A list of Points.
|
||||
"""
|
||||
|
||||
if smoothness == 0:
|
||||
# s of exactly zero seems to indicate a default level of smoothing
|
||||
# in splprep, so we'll just exit instead.
|
||||
return path
|
||||
|
||||
# splprep blows up on duplicated consecutive points with "Invalid inputs"
|
||||
coords = _remove_duplicate_coordinates(np.array(path))
|
||||
num_points = len(coords)
|
||||
|
@ -188,7 +193,7 @@ def smooth_path(path, smoothness=100.0):
|
|||
# the smoothed path and the original path is equal to the smoothness.
|
||||
# In practical terms, if smoothness is 1mm, then the smoothed path can be
|
||||
# up to 1mm away from the original path.
|
||||
s = num_points * smoothness ** 2
|
||||
s = num_points * (smoothness ** 2)
|
||||
|
||||
# .T transposes the array (for some reason splprep expects
|
||||
# [[x1, x2, ...], [y1, y2, ...]]
|
||||
|
@ -280,6 +285,9 @@ class Point:
|
|||
def rotate(self, angle):
|
||||
return self.__class__(self.x * math.cos(angle) - self.y * math.sin(angle), self.y * math.cos(angle) + self.x * math.sin(angle))
|
||||
|
||||
def scale(self, x_scale, y_scale):
|
||||
return self.__class__(self.x * x_scale, self.y * y_scale)
|
||||
|
||||
def as_int(self):
|
||||
return self.__class__(int(round(self.x)), int(round(self.y)))
|
||||
|
||||
|
|
|
@ -1,8 +1,16 @@
|
|||
from random import randrange
|
||||
import random
|
||||
|
||||
|
||||
def poprandom(sequence):
|
||||
index = randrange(len(sequence))
|
||||
def _uniform_rng():
|
||||
while True:
|
||||
yield random.uniform(0, 1)
|
||||
|
||||
|
||||
_rng = _uniform_rng()
|
||||
|
||||
|
||||
def poprandom(sequence, rng=_rng):
|
||||
index = int(round(next(rng) * (len(sequence) - 1)))
|
||||
item = sequence[index]
|
||||
|
||||
# It's O(1) to pop the last item, and O(n) to pop any other item. So we'll
|
||||
|
|
|
@ -8,3 +8,10 @@ def string_to_floats(string, delimiter=","):
|
|||
|
||||
floats = string.split(delimiter)
|
||||
return [float(num) for num in floats]
|
||||
|
||||
|
||||
def remove_suffix(string, suffix):
|
||||
if string.endswith(suffix):
|
||||
return string[:-len(suffix)]
|
||||
else:
|
||||
return string
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="28.610191751775545,75.47467474862292 97.85303752202475,96.43972153508825 108.41625783296531,61.55177483611794 39.17341206271612,40.586728049652606 28.610191751775545,75.47467474862292" style="stroke: none"/>
|
||||
<path d="M 68.51322479237044,68.51322479237044 74.8609302032236,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.8609302032236,68.51322479237044 99.96079497206846,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 99.96079497206846,68.51322479237044 73.79483494784071,51.069251442885275" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.51322479237044,47.54817800590508 68.51322479237044,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.51322479237044,68.51322479237044 37.065654612672404,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 37.065654612672404,68.51322479237044 68.51322479237044,47.54817800590508" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 37.065654612672404,47.54817800590508 68.51322479237044,47.54817800590508" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 37.065654612672404,68.51322479237044 37.065654612672404,47.54817800590508" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 31.78404445720212,64.99215135539025 33.76843093352103,66.31507567293617" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 33.76843093352103,66.31507567293617 37.065654612672404,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 106.30850038292161,68.51322479237042 99.96079497206846,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 37.065654612672404,68.51322479237044 57.950004481429865,82.4361247048754" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 63.23161463690015,85.95719814185559 61.24722816058124,84.63427382430964" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.24722816058124,84.63427382430964 57.950004481429865,82.4361247048754" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 89.39757466112789,103.40117149134075 74.8609302032236,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.8609302032236,68.51322479237044 63.23161463690015,85.95719814185559" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 101.02689022745135,85.95719814185559 74.8609302032236,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 89.39757466112789,103.40117149134075 101.02689022745135,85.95719814185559" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="68.51322479237044" cy="68.51322479237044" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.0 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="66.74612472014942,145.66542210950695 98.31384367589243,145.66542210950695 98.31384367589243,19.39454628653492 66.74612472014942,19.39454628653492 66.74612472014942,145.66542210950695" style="stroke: none"/>
|
||||
<path d="M 82.52998419802093,82.52998419802093 114.09770315376394,82.52998419802093" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 103.31367917502004,50.96226524227792 82.52998419802093,82.52998419802093" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.84336348829714,50.96226524227792 71.74596021927704,50.96226524227792" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 71.74596021927704,50.96226524227792 82.52998419802093,82.52998419802093" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.05933950955324,19.39454628653492 93.84336348829714,50.96226524227792" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 103.31367917502004,114.09770315376394 82.52998419802093,82.52998419802093" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.84336348829714,114.09770315376394 71.74596021927704,114.09770315376393" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 71.74596021927704,114.09770315376393 82.52998419802093,82.52998419802093" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.05933950955324,145.66542210950695 93.84336348829714,114.09770315376394" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.05933950955324,145.66542210950695 51.491620553810236,145.66542210950695" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.05933950955324,19.39454628653492 51.491620553810236,19.394546286534908" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 50.96226524227792,82.52998419802093 82.52998419802093,82.52998419802093" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 71.74596021927704,50.96226524227792 62.27564453255414,50.96226524227792" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.05933950955324,19.39454628653492 62.27564453255414,50.96226524227792" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 71.74596021927704,114.09770315376393 62.27564453255414,114.09770315376394" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.05933950955324,145.66542210950695 62.27564453255414,114.09770315376394" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="82.52998419802093" cy="82.52998419802093" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.8 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="50.115794349235756,100.81839658971865 106.80870773506254,133.55006539416988 135.15516442797593,84.45256218749303 78.46225104214913,51.720893383041805 50.115794349235756,100.81839658971865" style="stroke: none"/>
|
||||
<path d="M 92.63547938860584,92.63547938860584 120.98193608151924,92.63547938860584" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 120.98193608151924,92.63547938860584 102.08429828624364,59.90381058415461" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 102.08429828624364,59.90381058415461 92.63547938860584,92.63547938860584" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 92.63547938860582,59.90381058415461 73.73784159333024,59.90381058415461" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 73.73784159333024,59.90381058415461 87.91106993978693,84.45256218749303" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 87.91106993978693,84.45256218749303 92.63547938860584,92.63547938860584" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 120.98193608151924,92.63547938860584 130.43075497915703,92.63547938860584" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 106.80870773506254,117.18423099194426 102.08429828624364,109.00131379083145" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 102.08429828624364,109.00131379083145 92.63547938860584,92.63547938860584" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 130.43075497915703,92.63547938860584 106.80870773506254,117.18423099194426" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 64.28902269569244,109.00131379083146 50.11579434923574,84.45256218749303" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 102.08429828624364,109.00131379083145 73.73784159333024,109.00131379083145" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 92.63547938860584,141.73298259528266 102.08429828624364,109.00131379083145" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 73.73784159333024,109.00131379083145 64.28902269569244,109.00131379083146" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 87.91106993978693,84.45256218749303 50.11579434923574,84.45256218749303" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 87.91106993978693,84.45256218749303 64.28902269569244,109.00131379083146" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="92.63547938860584" cy="92.63547938860584" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.8 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="42.306916309288745,63.271963095754096 73.75448648898677,94.71953327545212 94.71953327545212,73.75448648898677 63.271963095754096,42.306916309288745 42.306916309288745,63.271963095754096" style="stroke: none"/>
|
||||
<path d="M 68.51322479237044,68.51322479237044 78.99574818560312,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 78.99574818560312,68.51322479237044 99.96079497206846,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.51322479237044,47.54817800590508 68.51322479237044,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.51322479237044,37.065654612672404 47.54817800590508,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 47.54817800590508,68.51322479237044 68.51322479237044,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 47.54817800590508,58.030701399137754 47.54817800590508,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 58.03070139913776,89.47827157883577 78.9957481856031,89.47827157883577" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 78.9957481856031,89.47827157883577 47.54817800590508,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 78.9957481856031,89.47827157883577 78.99574818560312,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="68.51322479237044" cy="68.51322479237044" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 1.9 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="127.15177132528224,149.59400429539605 154.4982574159414,116.22275669127913 66.79754138941318,44.35530841929938 39.45105529875403,77.72655602341631 127.15177132528224,149.59400429539605" style="stroke: none"/>
|
||||
<path d="M 96.97465635734771,96.97465635734771 121.40688886957062,96.97465635734771" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 114.71846345476722,63.60340875323079 96.97465635734771,96.97465635734771" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 116.60554937295079,120.93047244800762 121.40688886957062,96.97465635734771" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 96.97465635734771,96.97465635734771 87.37197736410806,96.97465635734771" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 87.37197736410806,96.97465635734771 116.60554937295079,120.93047244800762" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 116.60554937295079,120.93047244800762 150.64046087841334,120.93047244800762" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 150.64046087841334,120.93047244800762 121.40688886957062,96.97465635734771" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 148.75337496022976,111.5150409345506 150.64046087841334,120.93047244800762" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 90.28623094254431,63.60340875323079 96.97465635734771,96.97465635734771" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.05265893370158,39.64759266257086 90.28623094254431,63.60340875323079" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 67.74108434850498,73.0188402666878 90.28623094254431,63.60340875323079" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 96.97465635734771,96.97465635734771 67.74108434850498,73.0188402666878" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 67.74108434850498,73.0188402666878 62.93974485188515,49.06302417602788" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 67.74108434850498,73.0188402666878 33.70617284304242,73.0188402666878" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 121.40688886957064,144.88628853866751 150.64046087841334,120.93047244800762" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 94.06040277891147,130.34590396146464 87.37197736410806,96.97465635734771" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 116.60554937295079,120.93047244800762 94.06040277891147,130.34590396146464" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 116.60554937295079,120.93047244800762 121.40688886957064,144.88628853866751" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 87.37197736410806,96.97465635734771 62.93974485188515,96.97465635734771" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 67.74108434850498,73.0188402666878 62.93974485188515,96.97465635734771" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 33.70617284304242,73.0188402666878 62.93974485188515,96.97465635734771" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="96.97465635734771" cy="96.97465635734771" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.4 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="124.62883535202518,138.27694726297833 147.4541670292854,103.5727164517554 59.12739941839324,45.47928750744008 36.30206774113302,80.18351831866302 124.62883535202518,138.27694726297833" style="stroke: none"/>
|
||||
<path d="M 91.87811738520921,91.87811738520921 112.96735353525278,91.87811738520921" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 97.99740962196184,57.17388657398625 91.87811738520921,91.87811738520921" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 104.614333814999,111.24259369998097 112.96735353525278,91.87811738520921" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 91.87811738520921,91.87811738520921 75.17207794470161,91.8781173852092" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 75.17207794470161,91.8781173852092 104.614333814999,111.24259369998097" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 104.614333814999,111.24259369998097 142.40960940555016,111.24259369998097" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 142.40960940555016,111.24259369998097 112.96735353525278,91.87811738520921" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 135.792685212513,95.90283920352978 142.40960940555016,111.24259369998097" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 76.90817347191826,57.17388657398625 91.87811738520921,91.87811738520921" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 47.46591760162087,37.809410259214495 76.90817347191826,57.17388657398625" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 62.435861514911835,72.51364107043743 76.90817347191826,57.17388657398625" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 91.87811738520921,91.87811738520921 62.435861514911835,72.51364107043743" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 62.435861514911835,72.51364107043743 54.08284179465804,53.149164755665666" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 62.435861514911835,72.51364107043743 24.640585924360646,72.51364107043742" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 112.96735353525283,130.60707001475274 142.40960940555016,111.24259369998097" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 90.14202185799259,126.58234819643215 75.17207794470161,91.8781173852092" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 104.614333814999,111.24259369998097 90.14202185799259,126.58234819643215" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 104.614333814999,111.24259369998097 112.96735353525283,130.60707001475274" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 75.17207794470161,91.8781173852092 54.08284179465804,91.8781173852092" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 62.435861514911835,72.51364107043743 54.08284179465804,91.8781173852092" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 24.640585924360646,72.51364107043742 54.08284179465804,91.8781173852092" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="91.87811738520921" cy="91.87811738520921" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.4 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="117.5501951730137,155.81140555831297 148.99776535271175,134.8463587718476 87.98947920409758,49.728268818798306 56.541909024399544,70.69331560526366 117.5501951730137,155.81140555831297" style="stroke: none"/>
|
||||
<path d="M 102.76983718855564,102.76983718855564 134.21740736825367,102.76983718855564" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 119.43704938379558,91.658362391729 107.82765472579042,99.39795883039913" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 107.82765472579042,99.39795883039913 102.76983718855564,102.76983718855564" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 134.21740736825367,123.734883975021 102.76983718855564,102.76983718855564" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 119.43704938379558,91.658362391729 87.98947920409758,91.658362391729" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 87.98947920409758,91.658362391729 87.98947920409758,112.62340917819436" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 87.98947920409758,112.62340917819436 102.76983718855564,102.76983718855564" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 87.98947920409758,91.658362391729 87.98947920409758,70.69331560526365" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 87.98947920409758,70.69331560526365 119.43704938379558,91.658362391729" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 56.541909024399544,70.69331560526365 87.98947920409758,70.69331560526365" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 87.98947920409758,91.658362391729 56.541909024399544,70.69331560526365" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 56.541909024399544,91.658362391729 87.98947920409758,91.658362391729" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 148.99776535271175,134.8463587718476 134.21740736825367,144.69993076148634" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 134.21740736825367,144.69993076148634 117.5501951730137,155.81140555831297" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 87.98947920409758,70.69331560526365 87.98947920409758,49.72826881879829" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 87.98947920409758,49.72826881879829 73.20912121963951,59.581840808437036" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 73.20912121963951,59.581840808437036 56.541909024399544,70.69331560526365" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 102.76983718855564,123.734883975021 102.76983718855564,102.76983718855564" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 102.76983718855564,123.734883975021 102.76983718855564,144.69993076148634" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 134.21740736825367,144.69993076148634 102.76983718855564,144.69993076148634" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 102.76983718855564,123.734883975021 134.21740736825367,144.69993076148634" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 134.21740736825367,123.734883975021 102.76983718855564,123.734883975021" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 134.21740736825367,123.734883975021 134.21740736825367,144.69993076148634" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="102.76983718855564" cy="102.76983718855564" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.7 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="33.410529566157095,12.659483052393753 90.1034429519839,45.39115185684491 90.10344295198398,110.85448946574732 33.41052956615718,78.12282066129616 33.410529566157095,12.659483052393753" style="stroke: none"/>
|
||||
<path d="M 61.75698625907054,61.75698625907054 74.35541145592092,61.75698625907061" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.35541145592092,61.75698625907061 86.95383665277132,61.75698625907056" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.25304925119652,50.846429990920136 61.75698625907054,61.75698625907054" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.25304925119652,50.846429990920136 55.45777366064534,50.846429990920136" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.45777366064534,50.846429990920136 61.75698625907054,61.75698625907054" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 86.9538366527713,39.93587372276973 55.45777366064534,50.846429990920136" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.25304925119653,72.66754252722096 86.95383665277137,83.57809879537136" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 80.65462405434619,94.48865506352179 86.95383665277137,83.57809879537136" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 86.95383665277132,61.75698625907056 80.65462405434619,94.48865506352179" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 86.95383665277132,61.75698625907056 68.05619885749579,94.48865506352183" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.05619885749579,94.48865506352183 80.65462405434619,94.48865506352179" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.35541145592092,61.75698625907061 68.05619885749579,94.48865506352183" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.2530492511966,116.30976759982254 86.9538366527714,105.39921133167213" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 80.65462405434619,94.48865506352179 86.9538366527714,105.39921133167213" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 49.158561062220194,83.57809879537137 23.961710668519398,61.75698625907057" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 49.158561062220194,83.57809879537137 30.26092326694459,50.846429990920164" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 49.158561062220194,83.57809879537137 55.45777366064538,72.66754252722097" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.45777366064538,72.66754252722097 30.26092326694459,50.846429990920164" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.75698625907054,61.75698625907054 55.45777366064538,72.66754252722097" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.4577736606454,94.48865506352176 61.75698625907054,61.75698625907054" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.4577736606454,94.48865506352176 74.35541145592092,61.75698625907061" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 60.49714373938555,94.48865506352179 68.05619885749579,94.48865506352183" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 30.260923266944523,29.025317454619405 42.85934846379491,29.02531745461938" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 42.85934846379491,29.02531745461938 36.560135865369716,18.11476118646897" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 36.560135865369716,18.11476118646897 30.260923266944516,7.204204918318572" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 42.85934846379491,29.02531745461938 49.158561062220095,18.114761186468964" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 42.85934846379491,29.02531745461938 55.457773660645316,29.025317454619362" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.457773660645316,29.025317454619362 68.0561988574957,29.025317454619422" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 42.85934846379491,29.02531745461938 49.15856106222013,39.93587372276978" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 49.15856106222013,39.93587372276978 80.65462405434612,29.025317454619323" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 49.15856106222013,39.93587372276978 86.9538366527713,39.93587372276973" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 49.15856106222013,39.93587372276978 55.45777366064534,50.846429990920136" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 42.85934846379491,29.02531745461938 36.56013586536973,39.93587372276979" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 36.56013586536973,39.93587372276979 61.75698625907054,61.75698625907054" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 36.56013586536973,39.93587372276979 55.45777366064538,72.66754252722097" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 36.56013586536973,39.93587372276979 36.273808019986774,40.43180809859481" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="61.75698625907054" cy="61.75698625907054" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 5.3 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="27.112196814768662,17.820849492202445 56.36412623347685,3.9589706987761595 111.93440767106944,121.22575499363565 82.68247825236125,135.08763378706192 27.112196814768662,17.820849492202445" style="stroke: none"/>
|
||||
<path d="M 69.52330224291904,69.52330224291904 98.77523166162723,69.52330224291904" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 80.25180451576303,54.36777094175744 69.52330224291904,45.589905445794166" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 69.52330224291904,45.589905445794166 69.52330224291904,69.52330224291904" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 98.77523166162723,69.52330224291904 69.52330224291904,93.45669904004393" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 69.52330224291904,93.45669904004393 69.52330224291906,83.38518103634532" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 69.52330224291906,83.38518103634532 69.52330224291904,69.52330224291904" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 98.77523166162725,93.45669904004393 69.52330224291904,93.45669904004393" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 98.77523166162725,93.45669904004393 69.52330224291904,117.39009583716881" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 69.52330224291906,107.31857783347021 69.52330224291904,93.45669904004393" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 98.77523166162725,117.39009583716881 69.52330224291904,117.39009583716881" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 98.77523166162725,93.45669904004393 98.77523166162725,103.52821704374253" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 98.77523166162725,103.52821704374253 98.77523166162725,117.39009583716881" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 69.52330224291904,117.39009583716881 88.04672938878325,132.54562713833045" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 50.99987509705486,30.434374144632553 43.204950224034654,24.056708339434223" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 43.204950224034654,24.056708339434223 32.47644795119067,15.278842843470942" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.47644795119066,53.074118434022104 50.99987509705486,30.434374144632553" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.47644795119066,53.074118434022104 69.52330224291904,45.589905445794166" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 69.52330224291904,45.589905445794166 61.72837736989884,39.212239640595826" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.72837736989884,39.212239640595826 50.99987509705486,30.434374144632553" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 50.999875097054854,68.22964973518371 69.52330224291904,45.589905445794166" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 69.52330224291906,83.38518103634532 50.999875097054854,68.22964973518371" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 43.204950224034654,24.056708339434223 43.20495022403466,0.12331154230933848" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.72837736989886,1.4169640500446572 43.204950224034654,24.056708339434223" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 43.204950224034654,24.056708339434223 80.25180451576304,16.572495351206275" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="69.52330224291904" cy="69.52330224291904" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.8 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="45.14092916990824,82.9362047604594 98.5915205036945,45.14092916990824 136.38679609424568,98.5915205036945 82.93620476045943,136.38679609424568 45.14092916990824,82.9362047604594" style="stroke: none"/>
|
||||
<path d="M 90.76386263207695,90.76386263207695 117.48915829897008,90.76386263207695" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 117.48915829897008,90.76386263207695 98.5915205036945,71.86622483680138" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 98.5915205036945,71.86622483680138 90.76386263207695,64.03856696518383" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 90.76386263207695,64.03856696518383 90.76386263207695,90.76386263207695" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 90.76386263207695,90.76386263207695 90.76386263207695,117.48915829897008" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 90.76386263207695,117.48915829897008 109.66150042735254,98.5915205036945" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 109.66150042735254,98.5915205036945 117.48915829897008,90.76386263207695" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 90.76386263207695,90.76386263207695 64.03856696518383,90.76386263207695" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 64.03856696518383,90.76386263207695 82.9362047604594,109.66150042735254" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 82.9362047604594,109.66150042735254 90.76386263207695,117.48915829897008" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 90.76386263207695,64.03856696518383 71.86622483680138,82.93620476045943" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 71.86622483680138,82.93620476045943 64.03856696518383,90.76386263207695" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 136.38679609424568,71.86622483680138 98.5915205036945,71.86622483680138" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 109.66150042735254,136.38679609424568 109.66150042735254,98.5915205036945" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 45.14092916990824,109.66150042735254 82.9362047604594,109.66150042735254" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 71.86622483680136,45.14092916990824 71.86622483680138,82.93620476045943" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 109.66150042735254,98.5915205036945 136.38679609424568,98.5915205036945" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 82.9362047604594,109.66150042735254 82.9362047604594,136.38679609424568" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 71.86622483680138,82.93620476045943 45.14092916990824,82.9362047604594" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 98.5915205036945,71.86622483680138 98.59152050369448,45.14092916990824" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 52.96858704152578,64.03856696518383 71.86622483680138,82.93620476045943" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 128.55913822262812,117.48915829897007 109.66150042735254,98.5915205036945" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 117.48915829897008,52.96858704152579 98.5915205036945,71.86622483680138" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 64.03856696518383,128.55913822262812 82.9362047604594,109.66150042735254" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="90.76386263207695" cy="90.76386263207695" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.8 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="52.83279878799136,90.1713756368689 85.56446759244257,109.06901343214449 95.38396823377796,58.045391384900405 62.65229942932674,39.14775358962482 52.83279878799136,90.1713756368689" style="stroke: none"/>
|
||||
<path d="M 74.10838351088465,74.10838351088465 106.84005231533587,74.10838351088465" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 103.56688543489075,72.2186197313571 87.20105103266515,62.7698008337193" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 87.20105103266515,62.7698008337193 74.10838351088465,55.210745715609065" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088465,55.210745715609065 74.10838351088465,74.10838351088465" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 119.93271983711635,43.872163038443716 87.20105103266515,62.7698008337193" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 103.56688543489074,34.42334414080592 87.20105103266515,62.7698008337193" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 103.56688543489074,34.42334414080592 70.83521663043953,53.3209819360815" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 70.83521663043953,53.3209819360815 74.10838351088465,55.210745715609065" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 87.20105103266513,24.974525243168117 70.83521663043953,53.3209819360815" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.01571598910416,104.3446039833256 77.38155039132977,75.99814729041222" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 77.38155039132977,75.99814729041222 44.64988158687856,94.89578508568779" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.01571598910415,66.54932839277441 44.64988158687856,94.89578508568779" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 77.38155039132977,75.99814729041222 74.10838351088465,74.10838351088465" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088465,74.10838351088465 61.01571598910415,66.54932839277441" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.01571598910415,66.54932839277441 28.284047184652934,85.44696618804998" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.01571598910415,66.54932839277441 44.64988158687855,57.10050949513661" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088465,55.210745715609065 41.37671470643343,55.21074571560905" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 110.11321919578099,94.89578508568779 77.38155039132977,113.7934228809634" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.74738479355537,85.44696618805 77.38155039132977,113.7934228809634" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.74738479355537,85.44696618805 61.01571598910416,104.3446039833256" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.74738479355537,85.44696618805 88.63306154285986,82.49421028253819" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 88.63306154285986,82.49421028253819 77.38155039132977,75.99814729041222" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 70.83521663043953,53.3209819360815 61.01571598910417,47.651690597498835" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.01571598910417,47.651690597498835 54.46938222821393,43.872163038443716" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 87.20105103266513,24.974525243168117 54.46938222821393,43.872163038443716" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="74.10838351088465" cy="74.10838351088465" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.9 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 6.8 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="45.76192681797132,123.20588671756154 102.45484020379808,90.47421791311028 102.45484020379806,25.010880304207834 45.76192681797129,57.74254910865909 45.76192681797132,123.20588671756154" style="stroke: none"/>
|
||||
<path d="M 74.10838351088469,74.10838351088469 93.00602130616029,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.00602130616029,74.10838351088469 83.5572024085225,57.74254910865907" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.5572024085225,57.74254910865907 74.10838351088469,41.37671470643346" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088469,41.37671470643346 74.10838351088469,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.210745715609086,41.37671470643346 74.10838351088469,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.210745715609086,74.10838351088469 74.10838351088469,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.210745715609086,41.37671470643346 55.210745715609086,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 45.76192681797131,57.74254910865908 55.210745715609086,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 45.76192681797132,90.47421791311031 55.210745715609086,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 36.31310792033353,106.84005231533594 55.21074571560913,106.84005231533591" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.21074571560913,106.84005231533591 74.10838351088472,106.84005231533591" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088472,106.84005231533591 45.76192681797132,90.47421791311031" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088472,106.84005231533591 83.55720240852251,90.47421791311028" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.55720240852251,90.47421791311028 45.76192681797132,90.47421791311031" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.55720240852251,90.47421791311028 55.210745715609086,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.55720240852251,90.47421791311028 93.00602130616029,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.00602130616029,74.10838351088469 102.4548402037981,90.47421791311028" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088469,41.37671470643346 102.45484020379807,25.010880304207827" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.5572024085225,57.74254910865907 102.45484020379807,25.010880304207827" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.5572024085225,57.74254910865907 111.90365910143586,41.37671470643344" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.00602130616029,74.10838351088469 102.45484020379808,57.74254910865906" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="74.10838351088469" cy="74.10838351088469" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.4 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="45.761926817971315,123.20588671756154 102.45484020379808,90.47421791311028 102.45484020379807,25.01088030420785 45.76192681797129,57.74254910865909 45.761926817971315,123.20588671756154" style="stroke: none"/>
|
||||
<path d="M 74.10838351088469,74.10838351088469 93.00602130616029,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.00602130616029,74.10838351088469 83.55720240852249,57.74254910865907" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.55720240852249,57.74254910865907 74.10838351088469,41.37671470643346" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088469,41.37671470643346 74.10838351088469,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088469,74.10838351088469 55.210745715609086,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.210745715609086,74.10838351088469 74.10838351088469,41.37671470643346" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.210745715609086,74.10838351088469 55.210745715609086,41.376714706433454" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 45.76192681797131,57.74254910865907 55.210745715609086,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 45.76192681797131,90.4742179131103 55.210745715609086,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 36.31310792033352,106.84005231533591 55.210745715609114,106.8400523153359" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.210745715609114,106.8400523153359 74.10838351088472,106.8400523153359" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088472,106.8400523153359 45.76192681797131,90.4742179131103" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.210745715609086,74.10838351088469 74.10838351088472,106.8400523153359" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.5572024085225,90.47421791311027 74.10838351088472,106.8400523153359" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.210745715609086,74.10838351088469 83.5572024085225,90.47421791311027" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.5572024085225,90.47421791311027 93.00602130616029,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.00602130616029,74.10838351088469 102.4548402037981,90.47421791311027" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088472,106.8400523153359 102.4548402037981,90.47421791311027" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 111.90365910143586,41.376714706433454 74.10838351088469,41.37671470643346" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 111.90365910143586,41.376714706433454 83.55720240852249,57.74254910865907" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.00602130616029,74.10838351088469 102.45484020379808,57.742549108659055" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="74.10838351088469" cy="74.10838351088469" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.4 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 5.8 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="45.76192681797129,90.4742179131103 83.55720240852249,90.4742179131103 102.45484020379808,57.74254910865908 64.65956461324689,57.74254910865907 45.76192681797129,90.4742179131103" style="stroke: none"/>
|
||||
<path d="M 74.10838351088469,74.10838351088469 93.00602130616029,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.55720240852249,57.74254910865908 74.10838351088469,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.2107457156091,41.376714706433454 74.10838351088469,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088469,106.84005231533591 74.10838351088469,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088469,74.10838351088469 64.6595646132469,90.4742179131103" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 64.6595646132469,90.4742179131103 36.31310792033349,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.210745715609086,74.10838351088469 74.10838351088469,74.10838351088469" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="74.10838351088469" cy="74.10838351088469" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 1.7 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="58.296599668058555,76.12417144079677 80.11771220435938,113.91944703134796 112.8493810088106,95.02180923607237 91.02826847250978,57.226533645521194 58.296599668058555,76.12417144079677" style="stroke: none"/>
|
||||
<path d="M 85.57299033843458,85.57299033843458 107.3941028747354,85.57299033843458" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 96.48354660658498,66.675352543159 85.57299033843458,85.57299033843458" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.66243407028418,66.67535254315898 85.57299033843458,85.57299033843458" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.66243407028416,104.47062813371016 74.66243407028418,66.67535254315898" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.66243407028418,66.67535254315898 63.75187780213376,85.57299033843458" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 96.48354660658498,104.47062813371016 74.66243407028416,104.47062813371016" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 85.57299033843458,85.57299033843458 96.48354660658498,104.47062813371016" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 118.30465914288581,104.47062813371018 85.57299033843458,85.57299033843458" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="85.57299033843458" cy="85.57299033843458" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 1.8 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 7.9 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 7.1 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="77.36505114921047,109.88269085277689 31.397824079621223,78.03566174574331 63.79377458580795,31.276134882241536 109.76100165539721,63.12316398927513 77.36505114921047,109.88269085277689" style="stroke: none"/>
|
||||
<path d="M 86.77738812060257,70.57941286750922 89.4770506627848,37.84774406305798" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 89.4770506627848,37.84774406305798 70.57941286750922,70.57941286750922" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 70.57941286750922,70.57941286750922 86.77738812060257,70.57941286750922" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 62.48042524096254,56.55155480845868 89.4770506627848,37.84774406305798" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 70.57941286750922,70.57941286750922 62.48042524096254,56.55155480845868" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 62.48042524096254,56.55155480845868 32.784137276958035,70.5794128675092" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.784137276958035,70.5794128675092 48.982112530051396,70.57941286750922" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 48.982112530051396,70.57941286750922 70.57941286750922,70.57941286750922" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 57.08110015659808,84.60727092655975 86.77738812060257,70.57941286750922" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 48.982112530051396,70.57941286750922 57.08110015659808,84.60727092655975" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 57.08110015659808,84.60727092655975 30.084474734775817,103.31108167196045" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 30.084474734775817,103.31108167196045 48.982112530051396,70.57941286750922" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.784137276958035,70.5794128675092 30.084474734775817,103.31108167196045" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.784137276958035,70.5794128675092 56.789244746632434,41.386302852728384" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 56.789244746632434,41.386302852728384 62.48042524096254,56.55155480845868" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 56.789244746632434,41.386302852728384 40.8101610510133,38.73238376047558" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 49.20100408752564,21.16596691175465 56.789244746632434,41.386302852728384" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 65.18008778314477,23.819886004007458 62.48042524096254,56.55155480845868" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 54.38143761441583,117.33893973101094 57.08110015659808,84.60727092655975" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 57.08110015659808,84.60727092655975 62.77228065092817,99.77252288229" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 62.77228065092817,99.77252288229 70.36052131003497,119.99285882326375" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 78.7513643465473,102.42644197454281 76.05170180436507,135.15811077899406" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 62.77228065092817,99.77252288229 78.7513643465473,102.42644197454281" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 78.7513643465473,102.42644197454281 86.77738812060257,70.57941286750922" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 86.77738812060257,70.57941286750922 62.77228065092817,99.77252288229" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 57.08110015659808,84.60727092655975 38.18346236132248,117.33893973101098" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 62.48042524096254,56.55155480845868 81.37806303623812,23.81988600400745" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 108.4476523105518,88.39858391549228 78.7513643465473,102.42644197454281" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 78.7513643465473,102.42644197454281 94.94933959964065,102.42644197454281" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 78.7513643465473,102.42644197454281 102.75647181622169,73.23333195976198" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 102.75647181622169,73.23333195976198 108.4476523105518,88.39858391549228" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 102.75647181622169,73.23333195976198 86.77738812060257,70.57941286750922" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 89.4770506627848,37.84774406305798 95.1682311571149,53.012996018788236" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 95.1682311571149,53.012996018788236 102.75647181622169,73.23333195976198" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 95.1682311571149,53.012996018788236 111.14731485273401,55.66691511104103" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 119.17333862678932,23.81988600400745 95.1682311571149,53.012996018788236" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="86.77738812060257" cy="70.57941286750922" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 5.3 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="33.43708882270724,49.96722186588185 64.88465900240526,29.002175079416496 103.5893607620336,87.059227718859 72.14179058233559,108.02427450532434 33.43708882270724,49.96722186588185" style="stroke: none"/>
|
||||
<path d="M 68.51322479237042,68.51322479237042 99.96079497206844,68.51322479237042" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 99.96079497206844,89.47827157883576 68.51322479237042,68.51322479237042" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.51322479237042,68.51322479237042 80.60844409225427,39.48469847264917" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.2560932124401,31.421218939393274 68.51322479237042,68.51322479237042" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.51322479237042,110.44331836530114 99.96079497206844,89.47827157883576" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.51322479237042,89.47827157883577 68.51322479237042,68.51322479237042" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 99.96079497206844,89.47827157883576 68.51322479237042,89.47827157883577" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.51322479237042,89.47827157883577 68.51322479237042,110.44331836530114" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 49.160873912556255,60.44974525911452 68.51322479237042,68.51322479237042" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.2560932124401,31.421218939393274 49.160873912556255,60.44974525911452" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 49.160873912556255,60.44974525911452 29.808523032742077,52.386265725858614" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="68.51322479237042" cy="68.51322479237042" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.2 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="32.47943111366067,66.28455329318504 66.28455329318504,32.47943111366067 100.08967547270943,66.28455329318504 66.28455329318506,100.08967547270943 32.47943111366067,66.28455329318504" style="stroke: none"/>
|
||||
<path d="M 66.28455329318504,66.28455329318504 83.18711438294723,66.28455329318504" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.18711438294723,66.28455329318504 100.08967547270943,66.28455329318504" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 100.08967547270943,66.28455329318504 66.28455329318504,49.381992203422854" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 66.28455329318504,49.381992203422854 66.28455329318504,66.28455329318504" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 66.28455329318504,66.28455329318504 66.28455329318504,83.18711438294723" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 66.28455329318504,83.18711438294723 66.28455329318504,100.08967547270943" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 66.28455329318504,100.08967547270943 83.18711438294723,66.28455329318504" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 66.28455329318504,66.28455329318504 49.381992203422854,66.28455329318504" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 49.381992203422854,66.28455329318504 32.47943111366067,66.28455329318504" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.47943111366067,66.28455329318504 66.28455329318504,83.18711438294723" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 66.28455329318504,49.381992203422854 66.28455329318504,32.47943111366067" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 66.28455329318504,32.47943111366067 49.381992203422854,66.28455329318504" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 100.08967547270943,49.381992203422854 66.28455329318504,49.381992203422854" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.18711438294723,100.08967547270943 83.18711438294723,66.28455329318504" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.479431113660674,83.18711438294723 66.28455329318504,83.18711438294723" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 49.38199220342285,32.479431113660674 49.381992203422854,66.28455329318504" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="66.28455329318504" cy="66.28455329318504" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.8 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="52.10642787298648,87.3820184241676 74.7835932273172,52.10642787298648 112.57886881786838,77.30327826668726 89.90170346353767,112.57886881786838 52.10642787298648,87.3820184241676" style="stroke: none"/>
|
||||
<path d="M 82.34264834542743,82.34264834542743 120.13792393597862,82.34264834542743" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 82.34264834542743,57.145797951726635 82.34264834542743,82.34264834542743" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 82.34264834542743,107.53949873912822 82.34264834542743,82.34264834542743" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 82.34264834542743,82.34264834542743 44.54737275487624,82.34264834542743" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 59.66548299109672,92.42138850290775 82.34264834542743,107.53949873912822" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="82.34264834542743" cy="82.34264834542743" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 1.4 KiB |
|
@ -0,0 +1,16 @@
|
|||
<svg xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566" version="1.1" id="svg3519" sodipodi:docname="N3-8a.svg" inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)">
|
||||
<defs id="defs3523"/>
|
||||
<sodipodi:namedview id="namedview3521" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:showpageshadow="2" inkscape:pageopacity="0.0" inkscape:pagecheckerboard="0" inkscape:deskcolor="#d1d1d1" showgrid="false" inkscape:zoom="0.95542912" inkscape:cx="347.48784" inkscape:cy="340.16129" inkscape:current-layer="svg3519"/>
|
||||
<style type="text/css" id="style3299">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="96.09224294292639,66.74117744187491 77.22370083510758,96.09224294292639 45.77613065540955,75.12719615646104 64.64467276322837,45.77613065540955 96.09224294292639,66.74117744187491" id="polygon3517" style="stroke: none"/>
|
||||
<path d="M 68.51322479237044,68.51322479237044 99.96079497206846,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.51322479237044,47.54817800590508 68.51322479237044,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 99.96079497206846,68.51322479237044 68.51322479237044,89.47827157883579" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.51322479237044,89.47827157883579 68.51322479237044,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.51322479237044,68.51322479237044 37.065654612672404,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 49.64468268455162,76.89924350695658 68.51322479237044,89.47827157883579" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.51322479237044,89.47827157883579 81.09225286424964,97.86429029342193" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="68.51322479237044" cy="68.51322479237044" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.3 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="103.58936076203362,49.96722186588185 72.1417905823356,29.002175079416492 33.437088822707246,87.05922771885902 64.88465900240527,108.02427450532436 103.58936076203362,49.96722186588185" style="stroke: none"/>
|
||||
<path d="M 68.51322479237044,68.51322479237044 99.96079497206846,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 99.96079497206846,68.51322479237044 84.23700988221945,58.030701399137754" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 84.23700988221945,58.030701399137754 68.51322479237044,47.54817800590508" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.51322479237044,47.54817800590508 68.51322479237044,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 99.96079497206846,68.51322479237044 68.51322479237044,89.47827157883579" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.51322479237044,89.47827157883579 68.51322479237044,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 68.51322479237044,68.51322479237044 37.065654612672404,68.51322479237044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 37.065654612672404,68.51322479237044 52.789439702521406,78.99574818560312" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 52.789439702521406,78.99574818560312 68.51322479237044,89.47827157883579" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 37.065654612672404,68.51322479237044 68.51322479237044,47.54817800590508" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 84.23700988221945,58.030701399137754 103.58936076203362,49.96722186588185" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 91.49414146214977,20.938695546160595 84.23700988221945,58.030701399137754" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 45.532308122591104,116.08775403858027 52.789439702521406,78.99574818560312" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 52.789439702521406,78.99574818560312 33.437088822707246,87.05922771885902" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 64.88465900240527,108.02427450532437 52.789439702521406,78.99574818560312" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 72.1417905823356,29.0021750794165 84.23700988221945,58.030701399137754" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="68.51322479237044" cy="68.51322479237044" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.8 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-3.0971356115662694,32.741147893700635 -31.41380406017223,-9.733854779208295 3.0971356115662694,-32.741147893700635 31.41380406017223,9.733854779208304 -3.0971356115662694,32.741147893700635" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 23.007293114492338,-15.338195409661555" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 11.503646557246169,-23.007293114492338 0.0,-15.338195409661555" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-15.338195409661555 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -23.00729311449233,-15.338195409661564" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -23.00729311449233,-15.338195409661564 -11.503646557246158,-23.007293114492338" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -11.503646557246158,-23.007293114492338 0.0,-15.338195409661555" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 11.503646557246169,-38.345488524153886 -11.503646557246158,-23.007293114492338" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 25.66198078154914,-1.7697917780378736 14.158334224302969,5.899305926792899" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 14.158334224302969,5.899305926792899 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 5.3093753341136205,27.136807263247363" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 5.3093753341136205,27.136807263247363 16.81302189135979,19.46770955841659" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.81302189135979,19.46770955841659 14.158334224302969,5.899305926792899" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 39.820315005852116,4.1295141487550255 16.81302189135979,19.46770955841659" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 5.3093753341136205,27.136807263247363 -17.697917780378702,42.47500267290893" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -34.5109396717385,23.007293114492338 -11.503646557246169,7.669097704830773" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -11.503646557246169,7.669097704830773 -23.00729311449233,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -23.00729311449233,0.0 -34.5109396717385,7.669097704830773" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -23.00729311449233,-15.338195409661564 -46.014586228984655,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -23.00729311449233,0.0 -23.00729311449233,-15.338195409661564" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -11.503646557246169,7.669097704830773" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -11.503646557246169,7.669097704830773 -8.848958890189358,21.237501336454464" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -8.848958890189358,21.237501336454464 -20.352605447435526,28.906599041285236" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -8.848958890189358,21.237501336454464 5.3093753341136205,27.136807263247363" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.5 KiB |
|
@ -0,0 +1,206 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="566"
|
||||
height="566"
|
||||
viewBox="0 0 566 566"
|
||||
version="1.1"
|
||||
id="svg2288"
|
||||
sodipodi:docname="N4-13d.svg"
|
||||
inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs2292" />
|
||||
<sodipodi:namedview
|
||||
id="namedview2290"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="26.320208"
|
||||
inkscape:cx="-5.205126"
|
||||
inkscape:cy="33.586361"
|
||||
inkscape:current-layer="svg2288" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style2204">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon
|
||||
class="para"
|
||||
points="-11.321277690759581,45.97124880490247 -38.08066132346401,28.13165971643284 11.321277690759581,-45.97124880490249 38.08066132346401,-28.13165971643286 -11.321277690759581,45.97124880490247"
|
||||
style="stroke: none"
|
||||
id="polygon2206" />
|
||||
<path
|
||||
d="M 0.0,-8.78250567155632e-15 13.379691816352217,-8.919794544234819"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2208" />
|
||||
<path
|
||||
d="M 13.379691816352217,-8.919794544234819 26.759383632704434,-17.839589088469626"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2210" />
|
||||
<path
|
||||
d="M 26.759383632704434,-17.83958908846963 13.379691816352217,-26.759383632704445"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2212" />
|
||||
<path
|
||||
d="M 13.379691816352217,-26.759383632704445 0.0,-17.83958908846963"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2214" />
|
||||
<path
|
||||
d="M 0.0,-17.83958908846963 0.0,-8.78250567155632e-15"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2216" />
|
||||
<path
|
||||
d="M 0.0,-8.78250567155632e-15 -26.759383632704427,-17.839589088469637"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2218" />
|
||||
<path
|
||||
d="M -13.37969181635221,-26.759383632704445 0.0,-17.83958908846963"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2220" />
|
||||
<path
|
||||
d="M 13.379691816352217,-44.598972721174064 0.0,-35.67917817693925"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2222" />
|
||||
<path
|
||||
d="M -13.379691816352214,-26.75938363270444 0.0,-17.83958908846963"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2224" />
|
||||
<path
|
||||
d="M 13.379691816352217,-26.759383632704445 13.379691816352217,-44.598972721174064"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2226" />
|
||||
<path
|
||||
d="M 13.379691816352217,-44.598972721174064 40.13907544905665,-26.75938363270444"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2228" />
|
||||
<path
|
||||
d="M 40.13907544905665,-26.759383632704434 34.006716699895215,-22.671144466596814"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2230" />
|
||||
<path
|
||||
d="M 34.006716699895215,-22.671144466596814 26.759383632704434,-17.839589088469626"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2232" />
|
||||
<path
|
||||
d="M 26.759383632704427,-17.83958908846963 13.379691816352217,-26.759383632704445"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2234" />
|
||||
<path
|
||||
d="M -29.84700482109341,-2.058414125592663 -16.46731300474119,6.861380418642143"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2236" />
|
||||
<path
|
||||
d="M -16.46731300474119,6.861380418642143 0.0,-8.78250567155632e-15"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2238" />
|
||||
<path
|
||||
d="M -6.175242376777963,31.562349925753942 -19.554934193130176,22.64255538151912"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2242" />
|
||||
<path
|
||||
d="M -19.55493419313018,22.64255538151912 -16.46731300474119,6.861380418642143"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2244" />
|
||||
<path
|
||||
d="M -36.02224719787137,29.50393580016127 -34.037347862478455,19.358894752597507"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2246" />
|
||||
<path
|
||||
d="M -29.84700482109341,-2.058414125592672 -16.46731300474119,6.861380418642143"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2248" />
|
||||
<path
|
||||
d="M -16.46731300474119,6.861380418642143 -19.554934193130173,22.64255538151912"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2250" />
|
||||
<path
|
||||
d="M -19.554934193130176,22.64255538151912 -36.02224719787137,29.50393580016127"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2252" />
|
||||
<path
|
||||
d="M -36.022247,29.503936 -9.2628636,47.343525"
|
||||
style="stroke:#000000;stroke-width:0.2px"
|
||||
id="path2254" />
|
||||
<path
|
||||
d="M -9.262863565166944,47.3435248886309 -6.175242376777963,31.562349925753942"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2256" />
|
||||
<path
|
||||
d="M -19.55493419313018,22.64255538151912 -36.02224719787137,29.50393580016127"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2258" />
|
||||
<path
|
||||
d="M 13.379691816352217,-44.598972721174064 40.13907544905665,-26.759383632704434"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2260" />
|
||||
<path
|
||||
d="m -62.781631,11.664347 26.759384,17.839589"
|
||||
style="stroke:#000000;stroke-width:0.2px"
|
||||
id="path2262" />
|
||||
<path
|
||||
d="M -13.37969181635221,-62.43856180964369 13.379691816352217,-44.598972721174064"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2264" />
|
||||
<path
|
||||
d="M 13.379691816352217,-44.598972721174064 0.0,-35.67917817693925"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2266" />
|
||||
<path
|
||||
d="M -36.02224719787137,29.50393580016127 -34.037347862478455,19.358894752597507"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2268" />
|
||||
<path
|
||||
d="M 26.759383632704434,17.83958908846962 0.0,-8.78250567155632e-15"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2270" />
|
||||
<path
|
||||
d="M 13.379691816352217,-8.919794544234819 26.759383632704434,-8.78250567155632e-15"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2272" />
|
||||
<path
|
||||
d="M 40.13907544905665,-26.759383632704434 34.006716699895215,-22.671144466596814"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2274" />
|
||||
<path
|
||||
d="M 34.006716699895215,-22.671144466596814 26.759383632704434,-17.83958908846963"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2276" />
|
||||
<path
|
||||
d="M 26.759383632704427,-17.83958908846963 13.379691816352217,-8.919794544234819"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2278" />
|
||||
<path
|
||||
d="M 0.0,-8.78250567155632e-15 -3.087621188388973,15.781174962876959"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2280" />
|
||||
<path
|
||||
d="M -3.087621188388973,15.781174962876959 10.292070627963236,24.700969507111772"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path2282" />
|
||||
<path
|
||||
d="M -6.1752424,31.56235 -3.0876212,15.781175"
|
||||
style="stroke:#000000;stroke-width:0.2px"
|
||||
id="path2284"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<circle
|
||||
cx="0.0"
|
||||
cy="-8.78250567155632e-15"
|
||||
r="9.448818897637796"
|
||||
style="stroke:#0000FF;stroke-width: 0.2px;fill:none"
|
||||
id="circle2286" />
|
||||
</svg>
|
Po Szerokość: | Wysokość: | Rozmiar: 7.6 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-13.899530844675018,56.440519187468176 -46.75296738663412,34.53822815949544 13.899530844675018,-56.440519187468176 46.752967386634126,-34.538228159495446 -13.899530844675018,56.440519187468176" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 16.42671827097955,-10.951145513986365" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.42671827097955,-10.951145513986365 32.8534365419591,-21.90229102797273" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.8534365419591,-21.90229102797273 16.42671827097955,-32.8534365419591" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.42671827097955,-32.8534365419591 0.0,-21.90229102797273" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-21.90229102797273 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -16.42671827097955,-10.95114551398637" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -16.42671827097954,-32.8534365419591 0.0,-21.90229102797273" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.42671827097955,-54.75572756993183 0.0,-43.804582055945474" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.42671827097955,-32.8534365419591 16.42671827097955,-54.75572756993183" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.42671827097955,-54.75572756993183 32.8534365419591,-43.804582055945446" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.8534365419591,-43.804582055945446 49.28015481293864,-32.85343654195909" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 49.28015481293864,-32.85343654195909 32.8534365419591,-21.90229102797273" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -16.42671827097955,-10.95114551398637 -20.217499410436375,8.423958087681807" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -20.217499410436375,8.423958087681807 -24.008280549893207,27.799061689349994" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -24.008280549893207,27.799061689349994 -40.43499882087275,16.847916175363626" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -49.505796547430144,32.70300871896475 -44.22577996032958,36.2230197770318" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -44.22577996032958,36.2230197770318 -27.799061689350037,47.174165291018184" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -27.799061689350037,47.174165291018184 -24.008280549893207,27.799061689349994" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -27.799061689350037,47.174165291018184 -11.372343418370493,58.12531080500454" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 1.0782591135889725e-14,-65.7068730839182 13.962710530332624,-56.39839939702978" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 13.962710530332624,-56.39839939702978 16.42671827097955,-54.75572756993183" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.42671827097955,10.95114551398637 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.42671827097955,-10.951145513986365 32.8534365419591,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -20.217499410436375,8.423958087681807 -3.7907811394568185,19.375103601668176" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -3.7907811394568185,19.375103601668176 16.42671827097955,10.95114551398637" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.42671827097955,10.95114551398637 12.63593713152272,30.326249115654548" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 8.84515599206588,49.701352717322735 -7.581562278913658,38.75020720333635" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -7.581562278913658,38.75020720333635 -3.7907811394568185,19.375103601668176" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -7.581562278913658,38.75020720333635 -27.799061689350037,47.174165291018184" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 4.3 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-47.63619973260696,21.171644325603076 -47.63619973260696,-21.171644325603108 47.636199732606954,-21.171644325603097 47.636199732606954,21.171644325603086 -47.63619973260696,21.171644325603076" style="stroke: none"/>
|
||||
<path d="M -1.0422890653123965e-14,-1.0422890653123965e-14 15.878733244202307,-10.585822162801543" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 15.878733244202307,-10.585822162801543 31.757466488404624,-21.171644325603097" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.0422890653123965e-14,-21.171644325603097 -1.0422890653123965e-14,-1.0422890653123965e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.0422890653123965e-14,-1.0422890653123965e-14 -15.878733244202339,-10.58582216280156" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.878733244202339,-10.58582216280156 -31.75746648840464,-21.171644325603108" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -47.636199732606975,-10.58582216280156 -47.636199732606975,-31.75746648840465" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.878733244202339,-10.58582216280156 -31.757466488404656,-2.084578130624793e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -31.757466488404656,-2.084578130624793e-14 -47.636199732606975,-10.58582216280156" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -31.757466488404646,21.171644325603086 -47.636199732606975,10.585822162801527" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -31.757466488404656,-2.084578130624793e-14 -31.757466488404646,21.171644325603086" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -31.757466488404646,21.171644325603086 -15.878733244202317,10.585822162801538" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.878733244202317,10.585822162801538 -1.0422890653123965e-14,-1.0422890653123965e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 31.757466488404624,21.171644325603086 15.878733244202307,10.585822162801538" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 15.878733244202307,10.585822162801538 -1.0422890653123965e-14,21.171644325603086" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.878733244202317,10.585822162801538 -1.0422890653123965e-14,21.171644325603086" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 15.878733244202307,10.585822162801538 15.878733244202307,-10.585822162801543" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 15.878733244202307,-10.585822162801543 31.757466488404624,1.0422890653123965e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 31.757466488404624,1.0422890653123965e-14 43.66651642155635,7.939366622101164" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 43.66651642155635,7.939366622101164 47.63619973260693,10.585822162801549" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 47.63619973260693,10.585822162801549 31.757466488404624,21.171644325603086" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 31.757466488404624,1.0422890653123965e-14 47.63619973260693,-10.585822162801543" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 47.63619973260693,-10.585822162801543 47.63619973260693,-31.75746648840464" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 47.63619973260693,31.757466488404646 47.63619973260693,10.585822162801549" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -47.636199732606975,31.757466488404624 -47.636199732606975,10.585822162801527" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="-1.0422890653123965e-14" cy="-1.0422890653123965e-14" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 4.0 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="18.038910420407927,31.24430936133016 -54.1167312612237,31.24430936133017 -18.03891042040795,-31.24430936133016 54.11673126122366,-31.244309361330178 18.038910420407927,31.24430936133016" style="stroke: none"/>
|
||||
<path d="M -1.1840843216007769e-14,0.0 24.051880560543857,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 24.051880560543857,0.0 12.025940280271929,-20.829539574220092" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 12.025940280271929,-20.829539574220092 -1.1840843216007769e-14,-20.829539574220092" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.1840843216007769e-14,-20.829539574220092 -1.1840843216007769e-14,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 36.07782084081578,-20.829539574220107 24.051880560543857,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 12.025940280271929,-20.829539574220092 18.03891042040788,-31.244309361330146" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 18.03891042040788,-31.244309361330146 36.07782084081578,-20.829539574220107" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 24.051880560543857,0.0 48.10376112108775,-1.1840843216007769e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 54.11673126122369,-10.414769787110064 36.07782084081578,-20.829539574220107" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 36.07782084081582,20.829539574220092 24.051880560543857,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 24.051880560543857,0.0 12.025940280271964,20.829539574220117" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 12.025940280271964,20.829539574220117 18.03891042040794,31.24430936133016" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 12.025940280271964,20.829539574220117 2.3681686432015537e-14,20.829539574220142" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 2.3681686432015537e-14,20.829539574220142 -1.1840843216007769e-14,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.1840843216007769e-14,0.0 -24.05188056054388,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -24.05188056054388,0.0 -18.03891042040794,-10.414769787110053" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -18.03891042040794,-10.414769787110053 -12.02594028027194,-20.829539574220092" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.02594028027194,-20.829539574220092 -1.1840843216007769e-14,-20.829539574220092" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 36.07782084081578,-20.829539574220107 48.1037611210877,-41.659079148440206" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -24.05188056054388,0.0 -18.038910420407927,10.414769787110028" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -18.038910420407927,10.414769787110028 -12.025940280271916,20.829539574220153" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.025940280271916,20.829539574220153 2.3681686432015537e-14,20.829539574220142" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 3.5522529648023304e-14,41.659079148440235 12.025940280271964,20.829539574220117" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.025940280271916,20.829539574220153 -18.03891042040787,31.24430936133018" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -18.03891042040794,-31.244309361330153 -5.920421608003884e-14,-41.65907914844022" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.920421608003884e-14,-41.65907914844022 12.025940280271929,-20.829539574220092" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.02594028027194,-20.829539574220092 -18.03891042040794,-31.244309361330153" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -48.103761121087764,1.1840843216007769e-14 -24.05188056054388,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -18.03891042040794,-10.414769787110053 -36.077820840815846,-20.829539574220092" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -36.077820840815804,20.829539574220107 -48.103761121087764,1.1840843216007769e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -18.038910420407927,10.414769787110028 -36.077820840815804,20.829539574220107" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -54.11673126122369,31.24430936133018 -36.077820840815804,20.829539574220107" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -36.077820840815804,20.829539574220107 -24.05188056054382,41.659079148440235" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="-1.1840843216007769e-14" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 4.9 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-34.508729887025005,28.757274905854178 11.502909962341674,28.757274905854178 34.508729887025005,-28.75727490585417 -11.502909962341674,-28.75727490585417 -34.508729887025005,28.757274905854178" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 23.005819924683333,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 23.005819924683333,0.0 23.005819924683333,-5.751454981170837" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 23.005819924683333,-5.751454981170837 4.601163984936669,-19.554946935980837" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 4.601163984936669,-19.554946935980837 0.0,-23.005819924683333" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-23.005819924683333 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 4.601163984936669,-19.554946935980837 18.404655939746664,-37.95960287572751" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 23.005819924683333,-34.508729887025005 23.005819924683333,-5.751454981170837" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-23.005819924683333 -1.1325863110710676e-14,-51.7630948305375" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 23.005819924683333,-5.751454981170837 41.41047586443001,-19.554946935980837" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 41.41047586443001,-19.554946935980837 27.606983909620016,-37.95960287572751" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -27.60698390962,37.95960287572749 -41.41047586443,19.554946935980826" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -23.005819924683333,34.508729887025005 -23.005819924683323,5.751454981170831" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -23.005819924683323,5.751454981170831 -41.41047586443,19.554946935980826" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -23.005819924683323,0.0 -23.005819924683323,5.751454981170831" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -18.404655939746664,37.95960287572749 -4.601163984936669,19.554946935980826" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -4.601163984936669,19.554946935980826 0.0,23.005819924683323" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,23.005819924683323 1.1325863110710676e-14,51.7630948305375" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -23.005819924683323,5.751454981170831 -4.601163984936669,19.554946935980826" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -23.005819924683323,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,23.005819924683323 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 18.404655939746675,37.95960287572749 4.60116398493668,19.554946935980826" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 4.60116398493668,19.554946935980826 0.0,23.005819924683323" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 23.005819924683358,5.751454981170831 4.60116398493668,19.554946935980826" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 23.005819924683333,0.0 23.005819924683358,5.751454981170831" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -23.005819924683323,0.0 -23.005819924683333,-5.751454981170837" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -23.005819924683333,-5.751454981170837 -4.601163984936669,-19.554946935980837" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -4.601163984936669,-19.554946935980837 0.0,-23.005819924683333" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -4.601163984936669,-19.554946935980837 -18.404655939746664,-37.95960287572751" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 4.1 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 6.0 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-44.18449531293352,0.0 1.0876107592957497e-14,-33.13837148470015 44.18449531293352,0.0 0.0,33.13837148470015 -44.18449531293352,0.0" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 22.09224765646676,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.09224765646676,0.0 22.09224765646676,-9.941511445410054" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.09224765646676,-9.941511445410054 22.09224765646676,-23.196860039290094" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.09224765646676,-23.196860039290094 0.0,-9.941511445410042" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-9.941511445410042 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-33.13837148470014 0.0,-9.941511445410042" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.09224765646676,0.0 22.09224765646675,9.941511445410042" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.09224765646675,9.941511445410042 22.09224765646676,23.196860039290094" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.09224765646676,23.196860039290094 0.0,9.941511445410042" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,9.941511445410042 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.0876107592957497e-14,33.13837148470015 0.0,9.941511445410042" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -22.09224765646676,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.09224765646676,0.0 -22.092247656466757,-9.941511445410042" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.092247656466757,-9.941511445410042 -22.09224765646676,-23.196860039290094" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.09224765646676,-23.196860039290094 0.0,-9.941511445410042" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.09224765646676,0.0 -22.09224765646676,9.941511445410054" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.09224765646676,9.941511445410054 -22.09224765646677,23.196860039290094" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.09224765646677,23.196860039290094 0.0,9.941511445410042" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.092247656466757,-9.941511445410042 -44.18449531293352,-23.196860039290094" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.09224765646676,0.0 -44.18449531293353,1.0876107592957497e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.09224765646675,9.941511445410042 44.18449531293352,23.196860039290094" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.09224765646676,0.0 44.18449531293352,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.09224765646676,-9.941511445410054 44.18449531293352,-23.196860039290105" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.09224765646676,9.941511445410054 -44.18449531293353,23.196860039290105" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.4 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-41.94990686567596,6.132317318314796 -22.39796261882154,-35.996267476743526 41.949906865675956,-6.132317318314796 22.397962618821538,35.996267476743526 -41.94990686567596,6.132317318314796" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 19.551944246854415,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 19.551944246854415,0.0 19.551944246854415,-29.327916370281624" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.775972123427213,-21.064292397529154 0.0,-12.8006684247767" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-12.8006684247767 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 19.551944246854415,0.0 19.551944246854415,29.32791637028163" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 19.551944246854415,29.32791637028163 0.0,12.8006684247767" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,12.8006684247767 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 39.10388849370883,0.0 19.551944246854415,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 39.10388849370883,-12.8006684247767 39.10388849370883,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 19.551944246854415,29.32791637028163 29.32791637028163,21.064292397529165" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 29.32791637028163,21.064292397529165 39.10388849370883,12.8006684247767" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 39.10388849370883,12.8006684247767 39.10388849370883,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.775972123427207,21.064292397529165 -22.397962618821538,6.132317318314796" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.397962618821538,6.132317318314796 0.0,-12.8006684247767" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,12.8006684247767 -9.775972123427207,21.064292397529165" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.397962618821538,6.132317318314796 -44.795925237643075,25.065303061406293" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -35.019953114215866,-8.799657760899562 -22.397962618821538,6.132317318314796" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-12.8006684247767 -25.24398099078866,-17.063281733652026" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -25.24398099078866,-17.063281733652026 -35.019953114215866,-8.799657760899562" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -44.795925237643075,-0.5360337881470973 -35.019953114215866,-8.799657760899562" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -25.243980990788664,-42.664618583205424 -25.243980990788664,-29.863950158428725" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -25.24398099078866,-17.063281733652026 -25.243980990788664,-29.863950158428725" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 19.551944246854415,42.12858479505831 19.551944246854415,29.32791637028163" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.775972123427213,-21.064292397529154 -2.8460183719671215,-35.996267476743526" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -2.8460183719671215,-35.996267476743526 -25.24398099078866,-17.063281733652026" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,42.12858479505831 0.0,12.8006684247767" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.8 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 6.0 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="24.548751603338427,14.173228346456693 24.548751603338413,-42.51968503937011 -24.548751603338427,-14.173228346456693 -24.54875160333842,42.51968503937011 24.548751603338427,14.173228346456693" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 16.365834402225612,9.448818897637794" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.365834402225612,9.448818897637794 32.731668804451225,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.731668804451225,0.0 16.365834402225612,-9.448818897637802" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.365834402225612,-9.448818897637802 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.731668804451225,-18.897637795275603 16.365834402225612,-9.448818897637802" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -16.365834402225612,-9.448818897637802 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.365834402225612,-9.448818897637802 0.0,-18.897637795275603" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-18.897637795275603 -16.365834402225612,-9.448818897637802" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.36583440222563,28.3464566929134 16.365834402225612,9.448818897637794" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 0.0,18.897637795275603" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,18.897637795275603 16.36583440222563,28.3464566929134" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -16.365834402225612,-9.448818897637802 -16.36583440222562,9.44881889763781" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -16.36583440222562,9.44881889763781 0.0,18.897637795275603" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,18.897637795275603 0.0,37.795275590551206" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -32.73166880445124,1.4885420088362605e-14 -16.365834402225612,-9.448818897637802" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -16.365834402225612,-9.448818897637802 -16.36583440222563,-28.346456692913385" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -32.731668804451225,18.89763779527562 -16.36583440222562,9.44881889763781" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-18.897637795275603 0.0,-37.795275590551185" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -32.731668804451225,37.795275590551206 -16.365834402225612,28.346456692913414" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -16.365834402225612,28.346456692913414 -32.731668804451225,18.89763779527562" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -16.365834402225612,28.346456692913414 0.0,18.897637795275603" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -16.365834402225612,47.244094488189006 -16.365834402225612,28.346456692913414" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.365834402225612,-28.3464566929134 16.365834402225612,-47.244094488189" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-37.795275590551185 16.365834402225612,-28.3464566929134" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.365834402225612,-9.448818897637802 16.365834402225612,-28.3464566929134" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.365834402225612,-28.3464566929134 32.731668804451225,-37.795275590551206" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.8 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-15.16699344165932,43.81155249529255 15.166993441659303,43.81155249529255 15.166993441659326,-43.81155249529253 -15.166993441659303,-43.81155249529253 -15.16699344165932,43.81155249529255" style="stroke: none"/>
|
||||
<path d="M 0.0,1.194684072699187e-14 15.166993441659313,15.166993441659326" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 30.333986883318627,1.194684072699187e-14 9.512483274571858,-6.738782805986944" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.512483274571858,-6.738782805986944 0.0,1.194684072699187e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 24.67947671623116,-21.90577624764626 9.512483274571858,-6.738782805986944" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.166993441659313,15.166993441659326 0.0,1.194684072699187e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,1.194684072699187e-14 -20.82150360874676,-6.738782805986944" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.512483274571858,-6.738782805986944 -5.6545101670874445,-21.90577624764625" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.654510167087456,-21.90577624764626 -20.82150360874676,-6.738782805986944" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 15.166993441659313,15.166993441659326 -5.654510167087456,21.905776247646283" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.654510167087456,21.905776247646283 -15.166993441659313,15.166993441659326" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 24.67947671623116,21.905776247646294 9.512483274571858,37.072769689305595" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.512483274571858,37.07276968930559 -5.654510167087456,21.905776247646283" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.654510167087456,-21.905776247646248 9.512483274571858,-6.738782805986944" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 24.67947671623116,-21.905776247646266 3.8579731074844013,-28.64455905363321" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 3.8579731074844013,-28.64455905363321 -5.6545101670874445,-21.90577624764625" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 19.024966549143702,-43.811552495292524 3.8579731074844013,-28.64455905363321" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 3.8579731074844013,-28.64455905363321 24.67947671623116,-21.90577624764626" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.512483274571858,37.07276968930559 24.67947671623116,21.905776247646294" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 19.02496654914369,43.81155249529257 9.512483274571846,37.072769689305595" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.512483274571858,-50.55033530127949 -11.309020334174912,-43.811552495292524" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 3.8579731074844013,-28.64455905363321 -11.309020334174912,-43.811552495292524" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.654510167087456,21.905776247646294 -20.82150360874677,37.072769689305595" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.166993441659313,15.166993441659326 -5.654510167087456,21.905776247646294" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -20.82150360874676,-6.738782805986944 -5.654510167087456,-21.905776247646266" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.654510167087456,-21.905776247646266 -26.476013775834225,-28.64455905363321" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -11.309020334174912,-43.811552495292524 -26.476013775834225,-28.64455905363321" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -26.476013775834225,-28.64455905363321 -5.6545101670874685,-21.90577624764626" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.654510167087456,-21.905776247646266 3.8579731074844013,-28.64455905363321" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.654510167087456,21.905776247646294 9.512483274571833,37.072769689305595" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.512483274571833,37.072769689305595 -11.30902033417493,43.81155249529257" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -11.30902033417493,43.81155249529257 -20.82150360874677,37.072769689305595" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.512483274571833,37.072769689305595 19.02496654914369,43.81155249529257" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -20.82150360874678,37.072769689305595 -11.30902033417493,43.81155249529257" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="1.194684072699187e-14" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 5.0 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-26.22477078910853,19.466843752964596 26.22477078910852,19.466843752964614 26.224770789108536,-19.46684375296464 -26.22477078910852,-19.466843752964646 -26.22477078910853,19.466843752964596" style="stroke: none"/>
|
||||
<path d="M 0.0,-1.7037529016800572e-14 26.22477078910852,15.140878474528016" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 37.46395827015502,8.651930556873145 11.239187481046516,-6.4889479176548885" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 11.239187481046516,-6.4889479176548885 0.0,-1.7037529016800572e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 26.22477078910852,15.140878474528016 26.22477078910852,28.118774309837775" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 11.239187481046498,19.466843752964614 0.0,12.977895835309726" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,12.977895835309726 0.0,-1.7037529016800572e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 26.22477078910852,-23.792809031401227 26.22477078910852,-10.814913196091478" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 26.22477078910852,-10.814913196091478 11.239187481046498,-19.46684375296464" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 11.239187481046516,-6.4889479176548885 11.239187481046498,-19.46684375296464" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -26.22477078910852,-23.792809031401227 -26.22477078910853,-10.814913196091485" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -26.22477078910853,-10.814913196091485 0.0,-25.95579167061952" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 11.239187481046498,-19.46684375296464 -14.98558330806202,-4.325965278436597" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -14.98558330806202,-4.325965278436597 -26.22477078910853,-10.814913196091485" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -14.98558330806202,-4.325965278436597 -14.985583308062013,8.651930556873145" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -14.985583308062013,8.651930556873145 0.0,-1.7037529016800572e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -14.985583308062013,8.651930556873145 -41.21035409717053,-6.4889479176548885" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -26.224770789108536,15.140878474528016 -14.985583308062013,8.651930556873145" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -26.224770789108536,15.140878474528016 -26.224770789108536,28.118774309837757" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -26.224770789108536,28.118774309837757 0.0,12.977895835309726" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="-1.7037529016800572e-14" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.1 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-22.767230884276945,38.07420751372872 22.76723088427698,38.07420751372872 22.76723088427698,-38.07420751372869 -22.767230884276945,-38.07420751372869 -22.767230884276945,38.07420751372872" style="stroke: none"/>
|
||||
<path d="M 1.7851518556154416e-14,1.7851518556154416e-14 22.76723088427698,13.144666879739692" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 39.25384635220168,3.6261150013075145 16.48661546792473,-9.51855187843216" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.48661546792473,-9.51855187843216 10.206000051572422,-5.892436877124662" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 10.206000051572422,-5.892436877124662 1.7851518556154416e-14,1.7851518556154416e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.97323093584942,-19.037103756864337 16.48661546792473,-9.51855187843216" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.76723088427698,13.144666879739692 22.76723088427698,32.18177063660403" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.76723088427698,32.18177063660403 16.48661546792471,28.55565563529655" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.48661546792471,28.55565563529655 1.7851518556154416e-14,19.037103756864372" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 1.7851518556154416e-14,19.037103756864372 1.7851518556154416e-14,1.7851518556154416e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.48661546792471,-47.59275939216085 -6.280615416352253,-34.448092512421184" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.280615416352253,-34.448092512421184 -12.561230832704506,-38.07420751372867" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.561230832704506,-38.07420751372867 -22.767230884276945,-43.96664439085337" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.973230935849436,-38.07420751372867 10.206000051572458,-24.929540633989" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 10.206000051572458,-24.929540633989 -6.280615416352253,-34.448092512421184" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 10.206000051572458,-24.929540633989 10.206000051572422,-5.892436877124662" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 10.206000051572422,-5.892436877124662 -12.561230832704524,-19.037103756864337" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.561230832704524,-19.037103756864337 -12.561230832704506,-38.07420751372867" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.767230884276945,13.144666879739692 -6.280615416352253,3.6261150013075145" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.280615416352253,3.6261150013075145 -29.047846300629217,-9.51855187843216" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.280615416352253,3.6261150013075145 1.7851518556154416e-14,1.7851518556154416e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.561230832704524,-19.037103756864337 -29.047846300629217,-9.51855187843216" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.767230884276945,13.144666879739692 -22.767230884276945,32.18177063660403" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.767230884276945,32.18177063660403 1.7851518556154416e-14,19.037103756864372" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.48661546792471,28.55565563529655 -6.280615416352253,41.70032251503622" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.561230832704506,38.07420751372872 -22.767230884276945,32.18177063660403" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.561230832704506,-38.07420751372867 -35.32846171698149,-24.929540633989" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="1.7851518556154416e-14" cy="1.7851518556154416e-14" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 4.2 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-25.3180339304998,21.92606055768919 25.318033930499777,21.9260605576892 25.318033930499787,-21.92606055768919 -25.318033930499798,-21.9260605576892 -25.3180339304998,21.92606055768919" style="stroke: none"/>
|
||||
<path d="M -9.971340729186926e-15,0.0 25.318033930499787,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 25.318033930499787,0.0 25.318033930499787,-14.617373705126132" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 25.318033930499787,-14.617373705126132 12.659016965249888,-21.926060557689198" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 12.659016965249888,-21.926060557689198 -9.971340729186926e-15,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.659016965249915,21.92606055768919 -25.31803393049981,29.234747410252254" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.659016965249915,21.92606055768919 -25.3180339304998,-9.971340729186926e-15" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.659016965249915,21.92606055768919 -1.9942681458373853e-14,14.617373705126118" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.9942681458373853e-14,14.617373705126118 -9.971340729186926e-15,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.971340729186926e-15,0.0 -25.3180339304998,-9.971340729186926e-15" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 12.65901696524988,21.92606055768919 -1.9942681458373853e-14,14.617373705126118" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 12.65901696524988,21.92606055768919 25.318033930499787,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 25.31803393049977,29.234747410252265 12.65901696524988,21.92606055768919" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -25.3180339304998,-9.971340729186926e-15 -25.3180339304998,-14.617373705126138" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.971340729186926e-15,0.0 -12.65901696524991,-21.9260605576892" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.65901696524991,-21.9260605576892 -25.3180339304998,-14.617373705126138" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="-9.971340729186926e-15" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.6 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 6.3 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-18.75887026215152,24.63184116255596 18.75887026215154,24.63184116255596 18.75887026215152,-24.63184116255596 -18.75887026215154,-24.63184116255596 -18.75887026215152,24.63184116255596" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 26.26241836701215,-9.85074315496464e-15" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 39.03788088782245,-8.62114440689459 2.823117817964593,-16.010696755661385" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 2.823117817964593,-16.010696755661385 1.5201403635193922,-8.62114440689459" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 1.5201403635193922,-8.62114440689459 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 30.605676548496124,-24.631841162555972 13.722693312559755,-24.63184116255596" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 13.722693312559755,-24.63184116255596 4.343258181483975,-24.631841162555958" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 4.343258181483975,-24.631841162555958 2.823117817964593,-16.010696755661385" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 4.343258181483975,-24.631841162555958 -6.912063975806937,-24.631841162555947" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 4.343258181483995,24.63184116255595 -6.912063975806918,24.63184116255595" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.912063975806918,24.63184116255595 -29.42270829038875,24.631841162555972" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -45.94994486362938,16.010696755661396 -9.735181793771515,8.621144406894576" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.735181793771515,8.621144406894576 -8.43220433932632,16.010696755661396" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -8.43220433932632,16.010696755661396 -6.912063975806918,24.63184116255595" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -30.01419241944245,0.0 -11.255322157290921,-9.85074315496464e-15" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -11.255322157290921,-9.85074315496464e-15 -9.735181793771515,8.621144406894576" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 30.60567654849614,24.63184116255595 4.343258181483995,24.63184116255595" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -8.43220433932632,16.010696755661396 27.78255873053154,8.621144406894576" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -11.255322157290921,-9.85074315496464e-15 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 1.5201403635193922,-8.62114440689459 -34.69462270633847,-16.010696755661385" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.912063975806937,-24.631841162555947 -33.17448234281908,-24.631841162555958" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.2 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="30.058496954650423,34.11525878571678 -12.824518489763383,43.6221944277781 -30.058496954650455,-34.11525878571679 12.82451848976336,-43.62219442777808 30.058496954650423,34.11525878571678" style="stroke: none"/>
|
||||
<path d="M -1.467568053912369e-14,0.0 11.24766308358716,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 11.24766308358716,0.0 21.441507722206893,-4.753467821030645" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 31.63535236082661,-9.506935642061297 11.24766308358716,-19.0138712841226" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 11.24766308358716,-19.0138712841226 -1.467568053912369e-14,-24.258742716346568" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.467568053912369e-14,-24.258742716346568 -1.467568053912369e-14,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.467568053912369e-14,0.0 -11.247663083587195,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -11.247663083587195,0.0 -31.63535236082664,-9.506935642061304" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -31.63535236082664,-9.506935642061304 -1.467568053912369e-14,-24.258742716346568" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -31.63535236082664,-33.765678358407875 -20.387689277239453,-33.76567835840787" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -20.387689277239453,-33.76567835840787 -1.467568053912369e-14,-24.258742716346568" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -21.44150772220692,4.753467821030645 -11.247663083587195,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 11.24766308358716,0.0 -3.2120538525298987,17.23241960651287" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -3.2120538525298987,17.23241960651287 -11.189320043409678,26.73935524857416" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -11.189320043409678,26.73935524857416 -21.44150772220692,4.753467821030645" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -46.095069296943706,26.73935524857416 -11.189320043409678,26.73935524857416" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -25.649036979526752,43.97177485508702 -11.189320043409678,26.73935524857416" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 28.48164154847425,34.46483921302571 39.72930463206143,34.46483921302571" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 28.48164154847425,34.46483921302571 17.233978464887063,34.46483921302571" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 17.233978464887063,34.46483921302571 7.040133826267344,39.21830703405637" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 7.040133826267344,39.21830703405637 -3.153710812352374,43.97177485508702" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -10.193844638619733,-38.5191461794385 -1.467568053912369e-14,-43.272614000469154" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -10.193844638619733,-38.5191461794385 -20.387689277239453,-33.76567835840787" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 11.24766308358716,-19.0138712841226 42.8830154444138,-33.765678358407875" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 11.247663083587174,-43.27261400046916 22.495326167174362,-43.27261400046916" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 11.24766308358716,-19.0138712841226 11.247663083587174,-43.27261400046916" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 11.247663083587174,-43.27261400046916 -1.467568053912369e-14,-43.272614000469154" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 31.693695401004135,17.23241960651287 21.441507722206893,-4.753467821030645" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -3.2120538525298987,17.23241960651287 31.693695401004135,17.23241960651287" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 17.233978464887063,34.46483921302571 31.693695401004135,17.23241960651287" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -3.2120538525298987,17.23241960651287 7.040133826267344,39.21830703405637" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="-1.467568053912369e-14" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 4.5 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-55.48715725029487,4.1479916508879695 -13.720218077656495,53.92389146154361 55.48715725029487,-4.1479916508879695 13.720218077656495,-53.9238914615436 -55.48715725029487,4.1479916508879695" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 12.214745213755426,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 12.214745213755426,0.0 25.27188664914917,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 25.27188664914917,0.0 28.85576058379366,-20.325159089351054" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 28.85576058379366,-20.325159089351054 6.655765878625473,-37.74672402308052" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 6.655765878625473,-37.74672402308052 4.388417062829982,-24.887949905327815" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 4.388417062829982,-24.887949905327815 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 8.776834125659963,-49.77589981065563 6.655765878625473,-37.74672402308052" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 28.85576058379366,-20.325159089351054 31.927652527774644,-37.74672402308052" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 25.27188664914917,0.0 50.54377329829834,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 50.54377329829834,0.0 52.00657898590834,-8.295983301775951" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 25.51664880532987,24.887949905327815 12.214745213755426,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.812379279213047,24.8879499053278 -8.423962216383059,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -8.423962216383059,0.0 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 25.51664880532987,24.887949905327815 7.826328150925458,24.887949905327815" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 7.826328150925458,24.887949905327815 -12.812379279213047,24.8879499053278" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 21.1282317424999,49.77589981065563 7.826328150925458,24.887949905327815" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -17.200796342043024,49.7758998106556 -15.079728095008539,37.74672402308052" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.079728095008539,37.74672402308052 -14.417808521365012,33.9927915790269" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -14.417808521365012,33.9927915790269 -12.812379279213047,24.8879499053278" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 8.071090307106141,49.77589981065563 -17.200796342043024,49.7758998106556" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -33.69584886553223,0.0 -58.9677355146814,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -40.35161474415771,37.74672402308052 -37.27972280017672,20.325159089351054" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -37.27972280017672,20.325159089351054 -33.69584886553223,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.079728095008539,37.74672402308052 -37.27972280017672,20.325159089351054" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -8.423962216383059,0.0 -20.638707430138492,-1.3270887902265163e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -20.638707430138492,-1.3270887902265163e-14 -33.69584886553223,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 4.388417062829982,-24.887949905327815 -16.250290367308512,-24.887949905327815" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -16.250290367308512,-24.887949905327815 -29.552193958882953,-49.775899810655645" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -16.250290367308512,-24.887949905327815 -33.940611021712925,-24.887949905327822" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -20.638707430138492,-1.3270887902265163e-14 -33.940611021712925,-24.887949905327822" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 4.3 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-35.90738019297625,25.554423785595194 25.001772513339706,36.29435077981068 35.90738019297624,-25.554423785595187 -25.001772513339706,-36.294350779810685 -35.90738019297625,25.554423785595194" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 9.420433740935298,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.420433740935298,0.0 31.401445803117685,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 31.401445803117685,0.0 33.03728695506316,-9.277316184810882" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 33.03728695506316,-9.277316184810882 3.8169626878727816,-21.647071097892066" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 3.8169626878727816,-21.647071097892066 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.4528038398182685,30.92438728270295 -1.6358411519454743,9.277316184810894" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.6358411519454743,9.277316184810894 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.420433740935298,0.0 16.528208222364107,30.92438728270295" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.528208222364107,30.92438728270295 -5.4528038398182685,30.92438728270295" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 31.401445803117685,0.0 27.58448311524488,21.647071097892056" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 27.58448311524488,21.647071097892056 25.948641963299405,30.92438728270295" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 25.948641963299405,30.92438728270295 16.528208222364107,30.92438728270295" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.13167927542661,52.571458380595004 25.948641963299405,30.92438728270295" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.4528038398182685,30.92438728270295 -14.305115910777761,27.70240918443829" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -14.305115910777761,27.70240918443829 -34.96051074301658,20.184460288487426" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -34.96051074301658,20.184460288487426 -33.32466959107109,10.907144103676542" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -33.32466959107109,10.907144103676542 -1.6358411519454743,9.277316184810894" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -14.305115910777761,27.70240918443829 -31.561002511875344,54.33082566945503" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -34.96051074301658,20.184460288487426 -38.777473430889344,41.83153138637949" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 36.854249642935926,-30.924387282702956 33.03728695506316,-9.277316184810882" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 27.433815902000656,-30.92438728270293 5.452803839818281,-30.92438728270293" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 5.452803839818281,-30.92438728270293 3.8169626878727816,-21.647071097892066" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 5.452803839818281,-30.92438728270293 -3.3995082311412186,-34.14636538096758" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -3.3995082311412186,-34.14636538096758 -20.6553948322388,-7.517948895950844" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -20.6553948322388,-7.517948895950844 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -24.054903063380028,-41.664314276918454 -27.871865751252802,-20.01724317902637" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -27.871865751252802,-20.01724317902637 -29.507706903198276,-10.7399269942155" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -29.507706903198276,-10.7399269942155 -20.6553948322388,-7.517948895950844" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -33.32466959107109,10.907144103676542 -29.507706903198276,-10.7399269942155" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 4.3 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-13.70956664236903,15.08542028041111 -24.591298421178433,-2.1514598332360775 13.709566642369015,-15.085420280411125 24.591298421178422,2.151459833236063 -13.70956664236903,15.08542028041111" style="stroke: none"/>
|
||||
<path d="M -7.229076469138204e-15,-7.229076469138204e-15 12.38976338330897,-7.229076469138204e-15" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 12.38976338330897,-7.229076469138204e-15 13.709566642369015,-15.085420280411132" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 13.709566642369015,-15.085420280411132 -12.201535037869451,-2.1514598332360704" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.201535037869451,-2.1514598332360704 -7.229076469138204e-15,-7.229076469138204e-15" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -7.229076469138204e-15,-7.229076469138204e-15 -1.319803259060052,15.085420280411117" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.319803259060052,15.085420280411117 24.591298421178415,2.1514598332360557" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 24.591298421178415,2.1514598332360557 12.38976338330897,-7.229076469138204e-15" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 13.709566642369015,-15.085420280411132 36.9810618044874,2.1514598332360704" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.319803259060052,15.085420280411117 -24.591298421178433,-2.1514598332360846" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -24.591298421178433,-2.1514598332360846 -12.201535037869451,-2.1514598332360704" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.319803259060052,15.085420280411117 -13.709566642369037,15.085420280411103" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -35.473030199987846,-19.388339946883267 -12.201535037869451,-2.1514598332360704" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -10.881731778809407,-17.236880113647196 -12.201535037869451,-2.1514598332360704" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 13.709566642369015,-15.085420280411132 1.5080316044995705,-17.236880113647196" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="-7.229076469138204e-15" cy="-7.229076469138204e-15" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.7 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-24.066886371379066,15.811578266461053 -22.407101104387404,-12.936745854377223 24.066886371379052,-15.811578266461057 22.407101104387387,12.936745854377223 -24.066886371379066,15.811578266461053" style="stroke: none"/>
|
||||
<path d="M -8.715939781575089e-15,0.0 14.938067402924924,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 14.938067402924924,0.0 24.066886371379052,-15.811578266461053" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 24.066886371379052,-15.811578266461053 -7.469033701462466,-12.936745854377227" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -7.469033701462471,-12.936745854377227 -8.715939781575089e-15,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -8.715939781575089e-15,0.0 -9.12881896845413,15.811578266461053" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.12881896845413,15.811578266461053 22.407101104387387,12.936745854377223" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.407101104387387,12.936745854377223 14.938067402924924,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.407101104387387,12.936745854377214 14.938067402924924,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 24.066886371379052,-15.811578266461053 37.34516850731232,12.936745854377214" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -7.469033701462466,-12.936745854377227 -8.715939781575089e-15,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -8.715939781575089e-15,0.0 -9.128818968454134,15.811578266461044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.128818968454137,15.811578266461053 -18.25763793690826,-3.9528945666152633" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -18.25763793690826,-3.9528945666152633 -22.407101104387404,-12.936745854377227" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.407101104387404,-12.936745854377227 -7.469033701462471,-12.936745854377232" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -31.535920072841524,2.874832412083838 -22.407101104387404,-12.936745854377218" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -22.407101104387404,-12.936745854377218 -18.25763793690826,-3.9528945666152633" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -18.25763793690826,-3.9528945666152633 -9.128818968454134,15.811578266461044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.128818968454134,15.811578266461053 -24.06688637137906,15.811578266461062" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.53084785542196,-30.391085499171894 -7.469033701462475,-12.936745854377236" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -7.469033701462471,-12.936745854377227 -22.4071011043874,-12.936745854377223" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 1.6597852669916495,-28.74832412083828 -7.469033701462471,-12.936745854377227" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -7.469033701462466,-12.936745854377227 24.066886371379045,-15.811578266461053" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 1.6597852669916495,-28.74832412083828 -7.469033701462475,-12.936745854377236" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -7.46903370146248,-12.936745854377232 -15.53084785542196,-30.391085499171894" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -24.066886371379063,15.811578266461053 -9.128818968454137,15.811578266461053" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="-8.715939781575089e-15" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.9 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-7.3120519493519485,-45.094770519517226 -43.13995513191603,-15.031590173172416 7.3120519493519485,45.094770519517226 43.13995513191603,15.03159017317241 -7.3120519493519485,-45.094770519517226" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 20.351302241066023,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 20.351302241066023,0.0 30.52695336159903,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 34.060919908909064,-20.042120230896536 3.533966547310034,-20.042120230896536" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 3.533966547310034,-20.042120230896536 1.7669832736550104,-10.021060115448268" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 1.7669832736550104,-10.021060115448268 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 5.300949820965031,-30.06318034634481 3.533966547310034,-20.042120230896536" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.749402599135928,-60.126360692689644 -15.050352420100992,-30.06318034634482" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.050352420100992,-30.06318034634482 -25.226003540633993,-30.06318034634481" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 5.300949820965031,-30.06318034634481 -15.050352420100992,-30.06318034634482" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.300949820965058,30.06318034634482 -1.7669832736550237,10.021060115448268" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.7669832736550237,10.021060115448268 -32.29393663525406,10.021060115448268" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 1.7669832736550104,-10.021060115448268 -28.759970087944026,-10.021060115448268" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -28.759970087944026,-10.021060115448268 -30.526953361599055,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.7669832736550237,10.021060115448268 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -25.226003540633993,-30.06318034634481 -28.759970087944026,-10.021060115448268" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 20.351302241066023,0.0 15.050352420100966,30.06318034634482" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 15.050352420100966,30.06318034634482 4.874701299567961,30.06318034634482" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 4.874701299567961,30.06318034634482 -5.300949820965058,30.06318034634482" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 40.702604482132045,0.0 35.401654661166994,30.06318034634482" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 25.226003540633986,30.063180346344833 15.050352420100966,30.06318034634482" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 4.874701299567961,30.06318034634482 -0.4262485213970966,60.12636069268964" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.3 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-28.228448805328043,32.9331902728827 28.228448805328018,32.9331902728827 28.228448805328043,-32.9331902728827 -28.22844880532803,-32.9331902728827 -28.228448805328043,32.9331902728827" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 28.22844880532803,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 28.22844880532803,0.0 28.22844880532803,-9.409482935109345" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 28.22844880532803,-9.409482935109345 18.81896587021869,-18.81896587021869" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 18.81896587021869,-18.81896587021869 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 0.0,-28.22844880532803" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-28.22844880532803 9.409482935109352,-28.228448805328025" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.409482935109352,-28.228448805328025 18.81896587021869,-18.81896587021869" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 28.22844880532803,-9.409482935109345 28.228448805328043,-37.63793174043737" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 18.81896587021869,-37.63793174043737 9.409482935109352,-28.228448805328025" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-56.45689761065606 0.0,-28.22844880532803" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -28.22844880532805,56.45689761065606 -28.228448805328043,28.22844880532803" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -28.228448805328036,0.0 -28.228448805328043,28.22844880532803" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -28.228448805328043,28.22844880532803 -18.818965870218705,28.228448805328018" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -18.818965870218705,28.228448805328018 -9.409482935109358,37.63793174043736" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.2352876042034357e-14,9.40948293510934 -1.2352876042034357e-14,37.63793174043736" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -18.818965870218705,28.228448805328018 -9.409482935109358,18.81896587021869" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.409482935109358,18.81896587021869 -1.2352876042034357e-14,9.40948293510934" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.409482935109358,18.81896587021869 -28.228448805328036,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -28.228448805328036,0.0 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -1.2352876042034357e-14,9.40948293510934" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 28.228448805328018,56.45689761065606 28.228448805328018,28.22844880532803" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 28.228448805328018,28.22844880532803 18.81896587021868,28.22844880532803" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 18.81896587021868,28.22844880532803 9.40948293510934,37.63793174043738" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 18.81896587021868,28.22844880532803 9.40948293510934,18.81896587021869" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.40948293510934,18.81896587021869 -1.2352876042034357e-14,9.40948293510934" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 28.22844880532803,0.0 28.228448805328018,28.22844880532803" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.40948293510934,18.81896587021869 28.22844880532803,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -28.228448805328036,0.0 -28.22844880532803,-9.409482935109345" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -28.22844880532803,-9.409482935109345 -28.22844880532803,-37.63793174043737" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -28.22844880532803,-9.409482935109345 -18.81896587021869,-18.81896587021869" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -18.81896587021869,-18.81896587021869 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-28.22844880532803 -9.40948293510934,-28.22844880532803" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.40948293510934,-28.22844880532803 -18.81896587021869,-18.81896587021869" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -18.81896587021869,-37.637931740437374 -9.40948293510934,-28.22844880532803" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 4.8 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-109.65416548012095,-48.412659144132476 96.75367542363615,70.75696336450123 109.65416548012097,48.41265914413243 -96.75367542363614,-70.75696336450126 -109.65416548012095,-48.412659144132476" style="stroke: none"/>
|
||||
<path d="M 0.0,-2.54038647471231e-14 17.200653408646424,-2.54038647471231e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 17.200653408646424,-2.54038647471231e-14 43.00163352161608,-2.54038647471231e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-14.896202813579226 0.0,-2.54038647471231e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 94.60359374755538,59.58481125431678 86.00326704323213,44.6886084407376" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 86.00326704323213,44.6886084407376 73.97873618811359,23.8615100624926" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 107.50408380404019,37.240507033947964 107.50408380404019,52.13670984752719" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 107.50408380404019,52.13670984752719 94.60359374755538,59.58481125431678" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -30.101143465131237,-37.24050703394804 -17.200653408646424,-14.896202813579226" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -17.200653408646424,-14.896202813579226 0.0,-14.896202813579226" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -60.20228693026249,-14.896202813579253 -43.00163352161605,-14.89620281357924" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -43.00163352161605,-14.89620281357924 -34.40130681729286,-14.89620281357924" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -34.40130681729286,-14.89620281357924 -17.200653408646424,-14.896202813579226" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -30.101143465131237,-37.24050703394804 -47.301796873777676,-37.24050703394804" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -47.301796873777676,-37.24050703394804 -60.20228693026249,-29.792405627158452" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -60.20228693026249,-29.792405627158452 -60.20228693026249,-14.896202813579253" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -64.50245028242412,-52.13670984752727 -90.30343039539373,-52.13670984752727" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -90.30343039539373,-52.13670984752727 -77.40294033890893,-29.792405627158466" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -77.40294033890893,-29.792405627158466 -60.20228693026249,-29.792405627158452" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -47.301796873777676,-37.24050703394804 -47.30179687377766,-52.13670984752724" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -98.90375709971694,-67.0329126611065 -90.30343039539373,-52.13670984752727" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 4.300163352161613,22.34430422036879 30.101143465131265,22.34430422036879" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 30.101143465131265,22.34430422036879 17.200653408646424,-2.54038647471231e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-2.54038647471231e-14 -12.900490056484813,7.448101406789588" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 38.70147016945447,37.24050703394799 30.101143465131265,22.34430422036879" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 51.60196022593928,14.896202813579176 51.60196022593928,29.792405627158377" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 51.60196022593928,29.792405627158377 38.70147016945447,37.24050703394799" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 86.00326704323213,44.6886084407376 60.2022869302625,44.6886084407376" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 60.2022869302625,44.6886084407376 51.60196022593928,29.792405627158377" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 73.10277698674734,67.0329126611064 60.2022869302625,44.6886084407376" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 94.60359374755538,59.58481125431678 94.60359374755535,74.48101406789601" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -43.00163352161605,-14.89620281357924 -30.10114346513125,7.448101406789562" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="-2.54038647471231e-14" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 4.7 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-11.623116326622736,29.93884864492543 -34.86934897986822,0.0 11.623116326622736,-29.93884864492543 34.86934897986822,0.0 -11.623116326622736,29.93884864492543" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 19.235187494882794,14.969424322462707" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 19.235187494882794,14.969424322462707 23.24623265324549,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 23.24623265324549,0.0 19.235187494882794,-14.969424322462707" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 19.235187494882794,-14.969424322462707 -4.011045158362694,-14.969424322462707" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -4.011045158362694,-14.969424322462707 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 23.24623265324549,-29.93884864492542 19.235187494882794,-14.969424322462707" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -4.011045158362694,-14.969424322462707 1.5258959094254203e-14,-29.93884864492542" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 42.48142014812828,-14.969424322462714 23.24623265324549,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -23.24623265324547,29.93884864492543 -4.011045158362679,14.969424322462721" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -4.011045158362679,14.969424322462721 1.5258959094254203e-14,29.93884864492543" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -4.011045158362679,14.969424322462721" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -27.257277811608166,-14.969424322462698 -23.24623265324547,1.5258959094254203e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -23.24623265324547,1.5258959094254203e-14 -27.257277811608166,14.969424322462721" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -23.24623265324547,1.5258959094254203e-14 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -4.011045158362694,-14.969424322462707 -23.24623265324551,-29.938848644925415" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.5 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-18.55494513420945,29.50830235490061 34.196737279987005,6.753447727294739 18.55494513420945,-29.5083023549006 -34.196737279987005,-6.753447727294739 -18.55494513420945,29.50830235490061" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 31.2835842915551,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 31.2835842915551,0.0 24.690580114985963,-15.284301665276725" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 24.690580114985963,-15.284301665276725 9.048787969208414,-20.977448416918623" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.048787969208414,-20.977448416918623 -6.593004176569135,-15.284301665276725" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.593004176569135,-15.284301665276725 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 31.2835842915551,0.0 24.690580114985963,15.284301665276725" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.048787969208414,20.977448416918623 -6.593004176569135,15.284301665276725" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.593004176569135,15.284301665276725 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -28.06110229921049,7.470552962329145 -6.593004176569135,-15.284301665276725" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.593004176569135,15.284301665276725 -21.468098122641354,22.75485462760585" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -21.468098122641354,22.75485462760585 -28.06110229921049,7.470552962329145" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.593004176569135,-15.284301665276725 -22.234796322346686,-20.977448416918623" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 15.64179214577755,-36.26175008219535 9.048787969208414,-20.977448416918623" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.3 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-111.73193087845432,15.655596284371356 111.73193087845432,15.655596284371379 111.73193087845432,-15.655596284371345 -111.73193087845432,-15.655596284371379 -111.73193087845432,15.655596284371356" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 16.13000829298866,-7.52154639312425" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.13000829298866,-7.52154639312425 27.504464794867182,-23.177142677495606" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.23149235137131,-15.655596284371356 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 43.63447308785584,15.655596284371356 27.504464794867182,8.134049891247106" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 27.504464794867182,8.134049891247106 16.13000829298866,-7.52154639312425" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 27.504464794867182,-23.177142677495606 43.63447308785584,-15.655596284371356" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 43.63447308785584,-15.655596284371356 55.86596543922716,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.86596543922716,0.0 43.63447308785584,15.655596284371356" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.86596543922716,0.0 71.99597373221582,-7.52154639312425" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 71.99597373221582,-7.52154639312425 83.37043023409434,-23.177142677495606" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 99.500438527083,-15.655596284371356 83.37043023409434,-23.177142677495606" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.23149235137131,-15.655596284371356 -28.36150064435998,-8.134049891247106" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -28.36150064435998,-8.134049891247106 -39.73595714623849,7.52154639312425" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -39.73595714623849,7.52154639312425 -28.361500644359992,23.177142677495606" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -28.361500644359992,23.177142677495606 -12.231492351371323,15.655596284371356" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.231492351371323,15.655596284371356 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -39.73595714623849,-23.78964617561846 -28.36150064435998,-8.134049891247106" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -39.73595714623849,7.52154639312425 -55.86596543922716,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -55.86596543922716,0.0 -68.09745779059847,-15.655596284371356" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -68.09745779059847,-15.655596284371356 -84.22746608358715,-8.134049891247106" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -84.22746608358715,-8.134049891247106 -95.60192258546566,7.52154639312425" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -95.60192258546566,7.52154639312425 -84.22746608358715,23.177142677495606" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -84.22746608358715,23.177142677495606 -68.09745779059847,15.655596284371356" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -68.09745779059847,15.655596284371356 -55.86596543922716,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -111.73193087845432,-2.33555051950662e-14 -95.60192258546566,7.52154639312425" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.13000829298866,23.78964617561846 27.504464794867182,8.134049891247106" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 71.99597373221582,23.78964617561846 83.37043023409434,8.134049891247106" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 83.37043023409434,8.134049891247106 71.99597373221582,-7.52154639312425" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 99.500438527083,15.655596284371379 83.37043023409434,8.134049891247106" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 99.500438527083,-15.655596284371356 111.73193087845432,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 111.73193087845432,0.0 99.500438527083,15.655596284371379" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -95.60192258546566,-23.789646175618486 -84.22746608358715,-8.134049891247106" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 4.7 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 6.4 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 6.4 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 9.9 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-24.340599361744495,14.053051593740024 -8.1135331205815,-14.053051593740019 24.340599361744495,-14.053051593740019 8.113533120581508,14.053051593740024 -24.340599361744495,14.053051593740024" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 32.454132482326,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 21.63608832155067,-9.368701062493347 16.227066241163,-9.368701062493347" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.227066241163,-9.368701062493347 13.522555200969162,-4.684350531246671" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 13.522555200969162,-4.684350531246671 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.454132482326,0.0 16.227066241162987,-28.106103187480038" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 13.522555200969162,-14.053051593740012 16.227066241163,-9.368701062493347" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.227066241162987,-28.106103187480038 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -16.227066241162987,28.106103187480038 -32.454132482325996,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -13.522555200969162,14.053051593740024 -16.227066241162987,9.368701062493342" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -16.227066241162987,9.368701062493342 -21.636088321550655,9.368701062493342" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -16.227066241162987,28.106103187480038 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -13.522555200969162,4.684350531246671" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -13.522555200969162,4.684350531246671 -16.227066241162987,9.368701062493342" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -32.454132482325996,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -10.818044160775335,-9.368701062493347" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -16.227066241163,-28.106103187480038" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 2.704511040193827,-14.053051593740019" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.227066241163,28.106103187480038 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -2.704511040193827,14.053051593740024" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 10.818044160775335,9.368701062493342 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.9 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-18.732435600831796,18.732435600831796 18.732435600831796,18.732435600831796 18.732435600831796,-18.732435600831785 -18.732435600831796,-18.732435600831785 -18.732435600831796,18.732435600831796" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 37.46487120166359,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 18.732435600831796,-18.732435600831796 16.222765105076338,-9.366217800415898" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.222765105076338,-9.366217800415898 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.366217800415898,-21.242106096587232 18.732435600831796,-18.732435600831796" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-37.46487120166357 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.366217800415898,21.242106096587232 -18.732435600831796,18.732435600831774" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,37.46487120166357 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -16.222765105076338,9.366217800415898" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -16.222765105076338,9.366217800415898 -18.732435600831796,18.732435600831774" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -37.464871201663584,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 21.242106096587232,9.366217800415898 18.732435600831796,18.732435600831774" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 9.366217800415898,16.222765105076338" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.366217800415898,16.222765105076338 18.732435600831796,18.732435600831774" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -9.366217800415898,-16.222765105076352" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.366217800415898,-16.222765105076352 -18.732435600831796,-18.732435600831796" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -18.732435600831796,-18.732435600831796 -21.242106096587243,-9.366217800415898" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.6 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="618" height="618" viewBox="0 0 618 618">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="45.761926817971286,90.47421791311027 83.55720240852246,90.47421791311027 102.45484020379804,57.74254910865905 64.65956461324686,57.74254910865905 45.761926817971286,90.47421791311027" style="stroke: none"/>
|
||||
<path d="M 74.10838351088466,74.10838351088466 111.90365910143584,74.10838351088466" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.00602130616025,63.197827242734256 74.10838351088466,74.10838351088466" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.00602130616024,41.37671470643345 74.10838351088466,74.10838351088466" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 55.21074571560908,106.84005231533587 74.10838351088466,74.10838351088466" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088466,74.10838351088466 55.210745715609065,85.01893977903505" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.00602130616025,106.84005231533587 74.10838351088466,74.10838351088466" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088466,74.10838351088466 74.10838351088466,95.92949604718547" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 93.00602130616024,85.01893977903505 74.10838351088466,74.10838351088466" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088466,74.10838351088466 55.210745715609065,63.197827242734256" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088466,74.10838351088466 55.210745715609065,41.37671470643345" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 74.10838351088466,74.10838351088466 74.10838351088465,52.28727097458384" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="74.10838351088466" cy="74.10838351088466" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.2 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="545" height="545" viewBox="0 0 545 545">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="46.000055297894605,93.3516337315091 46.000055297894605,30.21619582002311 77.5677742536376,30.21619582002311 77.5677742536376,93.3516337315091 46.000055297894605,93.3516337315091" style="stroke: none"/>
|
||||
<path d="M 61.7839147757661,61.7839147757661 93.3516337315091,61.7839147757661" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 82.56760975276521,30.21619582002311 61.7839147757661,61.7839147757661" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 82.5676097527652,93.35163373150908 50.99989079702222,93.3516337315091" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 50.99989079702222,93.3516337315091 61.7839147757661,61.7839147757661" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.7839147757661,61.7839147757661 82.56760975276522,93.35163373150907" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 30.21619582002311,61.7839147757661 61.7839147757661,61.7839147757661" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.7839147757661,61.7839147757661 50.99989079702221,93.35163373150908" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 50.99989079702221,93.35163373150908 50.99989079702221,93.3516337315091" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 50.99989079702221,93.3516337315091 50.9998907970222,93.35163373150908" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.7839147757661,61.7839147757661 50.99989079702221,30.21619582002311" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 61.7839147757661,61.7839147757661 82.56760975276521,30.216195820023096" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 50.99989079702221,30.216195820023117 50.99989079702221,30.21619582002311" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 82.5676097527652,93.35163373150908 61.7839147757661,61.7839147757661" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="61.7839147757661" cy="61.7839147757661" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.4 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="128.95238408356818,195.54473927961556 224.34181888511173,195.54473927961556 224.34181888511173,157.74946368906438 128.95238408356818,157.74946368906436 128.95238408356818,195.54473927961556" style="stroke: none"/>
|
||||
<path d="M 176.64710148433997,176.64710148433997 207.97598448288613,158.55936245171904" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 207.97598448288613,158.55936245171904 240.70765328733737,139.66172465644345" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 176.64710148433997,138.85182589378877 176.6471014843399,157.74946368906436" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 176.6471014843399,157.74946368906436 176.64710148433997,176.64710148433997" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 240.70765328733737,177.45700024699462 207.97598448288613,158.55936245171904" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 112.58654968134256,196.3546380422702 145.31821848579378,177.45700024699462" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 145.31821848579378,177.45700024699462 112.58654968134256,158.559362451719" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 145.31821848579378,177.45700024699462 176.64710148433997,195.54473927961556" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 176.64710148433997,195.54473927961556 176.64710148433997,214.44237707489114" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 207.97598448288613,196.3546380422702 240.70765328733737,177.45700024699462" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 176.64710148433997,176.64710148433997 176.64710148433997,195.54473927961556" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 176.6471014843399,157.74946368906436 145.31821848579378,139.66172465644343" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="176.64710148433997" cy="176.64710148433997" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.3 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="59.93426776784209,133.69952040518623 170.5821467238583,133.6995204051862 170.5821467238583,96.81689408651415 59.93426776784209,96.81689408651417 59.93426776784209,133.69952040518623" style="stroke: none"/>
|
||||
<path d="M 115.25820724585019,115.25820724585019 134.62158606315302,111.84392112268092" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 134.62158606315302,111.84392112268092 151.21876790655546,108.91739015996443" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 151.21876790655546,108.91739015996443 134.62158606315302,74.96129480400887" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 115.25820724585019,78.37558092717813 115.25820724585017,96.81689408651417" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 115.25820724585017,96.81689408651417 115.25820724585019,115.25820724585019" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 151.21876790655546,108.91739015996443 170.5821467238583,105.50310403679516" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 170.5821467238583,105.50310403679516 170.5821467238583,87.06179087745913" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 189.94552554116112,127.35870331930043 170.5821467238583,123.94441719613118" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 170.5821467238583,123.94441719613118 170.5821467238583,105.50310403679516" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 59.93426776784209,105.5031040367952 40.57088895053925,108.91739015996446" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 59.93426776784209,142.38573035546725 59.93426776784209,123.94441719613124" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 59.93426776784209,123.94441719613124 59.93426776784209,105.5031040367952" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 59.93426776784209,123.94441719613124 79.29764658514493,127.35870331930045" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 79.29764658514493,127.35870331930045 95.89482842854734,130.28523428201697" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 95.89482842854734,130.28523428201697 79.29764658514493,164.24132963797254" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 95.89482842854734,130.28523428201697 115.25820724585019,133.6995204051862" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 115.25820724585019,133.6995204051862 115.25820724585019,152.14083356452227" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 151.21876790655546,145.8000164786365 134.62158606315302,111.84392112268092" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 115.25820724585019,115.25820724585019 115.25820724585019,133.6995204051862" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 170.5821467238583,142.38573035546725 170.5821467238583,123.94441719613118" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 115.25820724585017,96.81689408651417 95.89482842854734,93.4026079633449" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 59.93426776784209,105.5031040367952 59.9342677678421,87.06179087745917" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 95.89482842854734,93.4026079633449 79.29764658514493,127.35870331930045" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="115.25820724585019" cy="115.25820724585019" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.7 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="90.43187428045381,161.35786202118643 140.1999237876849,92.37515340927547 223.13579775785763,152.209810017125 173.36774825062653,221.192518629036 90.43187428045381,161.35786202118643" style="stroke: none"/>
|
||||
<path d="M 156.78383601915573,156.78383601915573 190.52985387121578,173.80409265923473" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 190.52985387121578,173.80409265923473 196.08253340048344,176.60466104163066" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 196.08253340048344,176.60466104163066 222.56585548802894,189.96187967963306" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 202.6819807428055,130.12722307178353 173.37599936991634,147.14747971186256" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 173.37599936991634,147.14747971186256 156.78383601915573,156.78383601915573" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 89.86193201062517,199.1099316836945 96.77185959242686,165.93188802321714" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 96.77185959242686,165.93188802321714 69.9780572654017,139.27527507584497" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 107.59397990104306,113.96943605138516 100.68405231924139,147.14747971186247" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 100.68405231924139,147.14747971186247 97.67580537027422,161.5915889203568" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 97.67580537027422,161.5915889203568 96.77185959242686,165.93188802321714" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 100.68405231924139,147.14747971186247 127.47785464626654,173.80409265923473" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 127.47785464626654,173.80409265923473 138.01964798607327,184.29191000597163" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 138.01964798607327,184.29191000597163 152.9139312355744,199.10993168369453" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 152.9139312355744,199.10993168369453 123.6079498626852,216.13018832377352" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 173.37599936991634,147.14747971186256 139.62998151785624,130.1272230717835" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 139.62998151785624,130.1272230717835 123.61198070944964,122.04832956158434" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 123.61198070944964,122.04832956158434 107.59397990104306,113.96943605138516" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 127.47785464626654,173.80409265923473 156.78383601915573,156.78383601915573" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 139.62998151785624,130.1272230717835 146.53990909965796,96.94917941130616" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 146.53990909965796,96.94917941130616 119.74610677263277,70.29256646393398" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 148.26410288502342,88.67045636931095 146.53990909965796,96.94917941130616" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 179.7077335625996,225.7665446310667 152.9139312355744,199.10993168369453" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 190.52985387121578,173.80409265923473 183.6199262894141,206.98213631971208" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 183.6199262894141,206.98213631971208 181.55977107688554,216.873979436657" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 183.6199262894141,206.98213631971208 210.41372861643922,233.63874926708428" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="156.78383601915573" cy="156.78383601915573" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 4.0 KiB |
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="566"
|
||||
height="566"
|
||||
viewBox="0 0 566 566"
|
||||
version="1.1"
|
||||
id="svg3864"
|
||||
sodipodi:docname="P4-19.svg"
|
||||
inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs3868" />
|
||||
<sodipodi:namedview
|
||||
id="namedview3866"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="5.6290175"
|
||||
inkscape:cx="30.023002"
|
||||
inkscape:cy="93.799674"
|
||||
inkscape:current-layer="svg3864" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style3834">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon
|
||||
class="para"
|
||||
points="48.12812712514781,93.75003287065105 99.04937068284823,58.094594276536604 88.14863246686312,42.52672672135988 37.22738890916271,78.18216531547434 48.12812712514781,93.75003287065105"
|
||||
style="stroke: none"
|
||||
id="polygon3836" />
|
||||
<path
|
||||
d="M 68.13837979600547,68.13837979600547 84.70535841307345,68.13837979600547"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path3838" />
|
||||
<path
|
||||
d="M 95.181367,52.570512 H 73.80462"
|
||||
style="stroke:#000000;stroke-width:0.2px"
|
||||
id="path3840" />
|
||||
<path
|
||||
d="M 73.80462019708835,52.57051224082874 68.13837979600547,68.13837979600547"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path3842" />
|
||||
<path
|
||||
d="M 49.97713640658978,72.51858625866274 49.92636364313921,72.65808327976646"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path3846" />
|
||||
<path
|
||||
d="M 44.26012324205632,88.22595083494319 49.92636364313921,72.65808327976646"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path3850" />
|
||||
<path
|
||||
d="M 62.73576720514666,82.98193589545127 60.827101859124326,88.22595083494319"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path3856" />
|
||||
<path
|
||||
d="M 60.827101859124326,88.22595083494319 44.26012324205632,88.22595083494319"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path3858" />
|
||||
<path
|
||||
d="M 62.73576720514666,82.98193589545127 68.13837979600547,68.13837979600547"
|
||||
style="stroke:#000000;stroke-width: 0.2px"
|
||||
id="path3860" />
|
||||
<circle
|
||||
cx="68.13837979600547"
|
||||
cy="68.13837979600547"
|
||||
r="9.448818897637796"
|
||||
style="stroke:#0000FF;stroke-width: 0.2px;fill:none"
|
||||
id="circle3862" />
|
||||
</svg>
|
Po Szerokość: | Wysokość: | Rozmiar: 2.9 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-48.214748014100564,27.836797744850944 16.071582671366865,27.836797744850944 48.21474801410057,-27.836797744850937 -16.071582671366865,-27.836797744850937 -48.214748014100564,27.836797744850944" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 25.71453227418697,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 25.71453227418697,0.0 38.571798411280454,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 38.571798411280454,0.0 32.14316534273371,-18.55786516323396" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.14316534273371,-18.55786516323396 12.857266137093484,-22.269438195880753" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 12.857266137093484,-22.269438195880753 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 51.42906454837394,-22.26943819588076 45.00043147982718,-33.40415729382112" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 45.00043147982718,-33.40415729382112 32.14316534273371,-18.55786516323396" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 19.285899205640188,-33.40415729382113 12.857266137093484,-22.269438195880753" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -45.00043147982719,33.404157293821115 -51.42906454837394,22.26943819588076" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -45.00043147982719,33.404157293821115 -32.14316534273372,18.55786516323396" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -32.14316534273372,18.55786516323396 -38.57179841128046,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -19.285899205640217,33.40415729382113 -12.85726613709351,22.269438195880742" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.85726613709351,22.269438195880742 -32.14316534273372,18.55786516323396" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -25.714532274186976,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -25.714532274186976,0.0 -38.57179841128046,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.85726613709351,22.269438195880742 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 19.285899205640227,33.404157293821115 12.857266137093484,22.26943819588076" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 12.857266137093484,22.26943819588076 0.0,37.11573032646792" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 12.857266137093484,22.26943819588076 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.14316534273369,18.55786516323396 25.71453227418697,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -25.714532274186976,0.0 -32.14316534273372,-18.55786516323396" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -12.857266137093493,-22.269438195880753" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.857266137093493,-22.269438195880753 -19.285899205640245,-33.40415729382112" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.857266137093493,-22.269438195880753 -1.8446516013015847e-14,-37.11573032646792" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.5 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-23.010704449227358,-39.85570922401302 23.010704449227358,-13.285236408004346 23.010704449227358,39.855709224013026 -23.010704449227358,13.285236408004346 -23.010704449227358,-39.85570922401302" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 12.272375706254588,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 12.272375706254588,0.0 3.068093926563647,-26.570472816008678" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 3.068093926563647,-26.570472816008678 -15.340469632818241,-26.570472816008678" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.340469632818241,-26.570472816008678 -6.136187853127294,-10.62818912640347" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.136187853127294,-10.62818912640347 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 12.272375706254588,0.0 30.680939265636482,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 30.680939265636482,0.0 21.476657485945545,-15.942283689605215" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.136187853127294,-10.62818912640347 -24.54475141250919,10.628189126403477" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -24.54475141250919,10.628189126403477 -15.340469632818234,26.570472816008692" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.340469632818234,26.570472816008692 -6.136187853127294,10.628189126403477" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.136187853127294,10.628189126403477 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.340469632818241,-26.570472816008678 -24.544751412509182,-10.62818912640347" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.136187853127294,10.628189126403477 21.476657485945545,15.942283689605201" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 21.476657485945545,15.942283689605201 30.680939265636482,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 15.34046963281825,26.570472816008678 21.476657485945545,15.942283689605201" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.340469632818234,26.570472816008692 3.068093926563647,26.570472816008692" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 3.068093926563647,26.570472816008692 15.34046963281825,26.570472816008678" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -24.54475141250919,-42.51275650561388 -15.340469632818241,-26.570472816008678" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.340469632818241,-26.570472816008678 -6.136187853127294,-42.512756505613886" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 12.272375706254588,53.140945632017356 3.068093926563647,26.570472816008692" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 30.680939265636482,53.140945632017356 21.476657485945545,37.19866194241214" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 21.476657485945545,37.19866194241214 15.34046963281825,26.570472816008678" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 39.88522104532743,15.942283689605201 21.476657485945545,37.19866194241214" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -33.74903319220013,-26.57047281600867 -15.340469632818241,-26.570472816008678" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.7 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="26.841545438179626,46.49092045259577 26.841545438179626,-15.496973484198573 -26.841545438179626,-46.49092045259573 -26.841545438179633,15.496973484198591 26.841545438179626,46.49092045259577" style="stroke: none"/>
|
||||
<path d="M 0.0,1.7971321675074857e-14 28.630981800724943,-12.397578787358846" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 28.630981800724943,-12.397578787358846 25.052109075634327,-18.596368181038272" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 3.578872725090615,-30.993946968397147 0.0,1.7971321675074857e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 3.578872725090615,-30.993946968397147 -3.5788727250905974,-30.993946968397157" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -3.5788727250905974,-30.993946968397157 -17.894363625453085,-30.993946968397147" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -17.894363625453085,-30.993946968397147 -25.052109075634327,-18.596368181038272" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -25.052109075634327,-18.596368181038272 0.0,1.7971321675074857e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -25.052109075634327,-18.596368181038272 -28.630981800724943,-12.397578787358855" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -28.630981800724943,12.397578787358892 0.0,1.7971321675074857e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -28.630981800724943,12.397578787358892 -25.052109075634327,18.59636818103833" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -3.578872725090615,30.993946968397182 0.0,1.7971321675074857e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -3.578872725090615,30.993946968397182 3.578872725090615,30.9939469683972" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 3.578872725090615,30.9939469683972 17.894363625453078,30.9939469683972" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 17.894363625453078,30.9939469683972 25.052109075634327,18.59636818103831" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 25.052109075634327,18.59636818103831 0.0,1.7971321675074857e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 25.052109075634327,18.59636818103831 28.63098180072492,12.397578787358892" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 17.894363625453078,30.9939469683972 25.052109075634327,43.39152575575606" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 25.052109075634327,43.39152575575606 53.68309087635925,30.993946968397182" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 25.052109075634327,43.39152575575606 27.825735437579542,48.19558753585762" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -53.68309087635926,-30.993946968397147 -25.052109075634316,-43.39152575575602" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -25.052109075634316,-43.39152575575602 -28.630981800724932,-49.59031514943544" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -17.894363625453085,-30.993946968397147 -25.052109075634316,-43.39152575575602" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -3.5788727250905974,-30.993946968397157 0.0,-61.987893936794315" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 3.578872725090615,30.9939469683972 0.0,61.98789393679435" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="1.7971321675074857e-14" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 3.8 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="14.173228346456696,-24.548751603338406 -14.173228346456682,-8.182917201112796 -14.173228346456682,24.548751603338427 14.173228346456696,8.18291720111281 14.173228346456696,-24.548751603338406" style="stroke: none"/>
|
||||
<path d="M 9.489455306331154e-15,9.489455306331154e-15 18.897637795275593,9.489455306331154e-15" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 18.897637795275593,9.489455306331154e-15 9.448818897637807,-16.3658344022256" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.448818897637807,-16.3658344022256 -9.448818897637782,-16.3658344022256" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.448818897637782,-16.3658344022256 9.489455306331154e-15,9.489455306331154e-15" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.448818897637782,-16.3658344022256 -18.897637795275575,9.489455306331154e-15" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -18.897637795275575,9.489455306331154e-15 -9.448818897637778,16.36583440222563" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.448818897637778,16.36583440222563 9.489455306331154e-15,9.489455306331154e-15" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.448818897637778,16.36583440222563 9.448818897637807,16.36583440222562" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.448818897637807,16.36583440222562 18.897637795275593,9.489455306331154e-15" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.448818897637807,-16.3658344022256 18.897637795275603,-32.7316688044512" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.448818897637778,16.36583440222563 9.489455306331154e-15,32.73166880445123" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -9.448818897637778,16.36583440222563 -18.897637795275575,32.73166880445123" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -28.34645669291337,16.36583440222562 -9.448818897637778,16.36583440222563" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="9.489455306331154e-15" cy="9.489455306331154e-15" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.5 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-19.68836400058131,-4.858514396250412 -1.4855265200179022,12.986409448885766 19.68836400058131,4.858514396250408 1.4855265200179022,-12.986409448885766 -19.68836400058131,-4.858514396250412" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 15.376479204717551,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -2.8263582758458647,-17.84492384513617 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -24.000248796445067,-9.717028792500823 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -2.826358275845857,-17.844923845136165" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -21.17389052059921,8.12789505263535 -5.797411315881657,8.12789505263535" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.797411315881657,8.12789505263535 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -24.000248796445064,-9.71702879250081" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 15.376479204717551,7.721304311292084e-15 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.797411315881657,8.12789505263535 18.202837480563414,17.844923845136183" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 18.202837480563414,17.844923845136183 15.376479204717551,1.544260862258417e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.797411315881657,8.127895052635358 -21.17389052059921,8.12789505263535" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -2.9710530400357964,25.972818897771532 -5.797411315881657,8.127895052635358" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 18.202837480563414,17.844923845136183 -5.797411315881657,8.127895052635358" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.797411315881662,8.127895052635358 -2.9710530400357964,25.972818897771532" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 15.376479204717542,7.721304311292084e-15 18.202837480563414,17.844923845136183" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.5 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-12.76612009550018,2.251011411801197 1.7676950520100394,19.30481743471467 12.76612009550016,-2.2510114118012177 -1.7676950520100603,-19.304817434714693 -12.76612009550018,2.251011411801197" style="stroke: none"/>
|
||||
<path d="M -1.0415046500390685e-14,-1.0415046500390685e-14 20.7408929208004,-1.0415046500390685e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 6.20707777329018,-17.053806022913484 -1.0415046500390685e-14,-1.0415046500390685e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -25.532240191000344,4.502022823602403 -4.791347270199929,4.502022823602403" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -4.791347270199929,4.502022823602403 -1.0415046500390685e-14,-1.0415046500390685e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.0415046500390685e-14,-1.0415046500390685e-14 -19.32516241771015,-12.551783199311082" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -4.791347270199929,4.502022823602403 14.533815147510209,17.053806022913463" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -4.791347270199929,4.502022823602403 -10.998425043490125,21.55582884651588" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -14.533815147510229,-17.053806022913484 6.20707777329018,-17.053806022913484" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="-1.0415046500390685e-14" cy="-1.0415046500390685e-14" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 1.9 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-14.488157762908855,21.765483115404013 14.488157762908862,21.765483115404013 14.488157762908862,-21.765483115404013 -14.488157762908855,-21.765483115404013 -14.488157762908855,21.765483115404013" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 14.488157762908862,14.488157762908862" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 28.97631552581771,0.0 10.286592011665299,-7.277325352495159" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 10.286592011665299,-7.277325352495159 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 24.774749774574147,-21.765483115404013 10.286592011665299,-7.277325352495159" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 14.488157762908862,-29.04280846789918 -4.201565751243566,-21.765483115404013" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 10.286592011665299,-7.277325352495159 -4.201565751243566,-21.765483115404013" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -14.488157762908855,14.488157762908862 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -18.68972351415243,-7.277325352495159" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -4.201565751243566,-21.765483115404013 -18.68972351415243,-7.277325352495159" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 14.488157762908862,14.488157762908862 -4.201565751243566,21.765483115404013" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -4.201565751243566,21.765483115404013 -14.488157762908855,14.488157762908862" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.1 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-10.59710535283464,32.61453668613094 32.61453668613094,10.597105352834635 10.597105352834646,-32.61453668613094 -32.61453668613094,-10.59710535283464 -10.59710535283464,32.61453668613094" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 13.607520908944029,-13.607520908944029" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 13.607520908944029,-13.607520908944029 0.0,-27.215041817888054" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-27.215041817888054 -19.007015777186915,-24.20462626177867" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -19.007015777186915,-24.20462626177867 -15.996600221077532,-5.197610484591755" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.996600221077532,-5.197610484591755 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 27.215041817888057,-27.215041817888046 13.607520908944029,-13.607520908944029" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.017431333296297,15.996600221077532 3.0104155561093826,19.007015777186915" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 3.0104155561093826,19.007015777186915 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 13.607520908944029,-13.607520908944029 27.215041817888057,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 27.215041817888057,0.0 22.017431333296297,15.996600221077532" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.996600221077522,22.017431333296297 3.0104155561093826,19.007015777186915" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 3.0104155561093826,19.007015777186915 6.020831112218765,38.01403155437383" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -15.996600221077532,-5.197610484591755 -29.604121130021554,8.40991042435228" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -29.604121130021554,8.40991042435228 -15.996600221077522,22.017431333296297" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.4 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-11.662009696043334,42.81730536048435 11.662009696043324,42.81730536048435 11.662009696043334,-42.81730536048435 -11.662009696043329,-42.81730536048435 -11.662009696043334,42.81730536048435" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 23.324019392086658,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.742759716371626,-18.081862350594292 2.4741099463433005,-24.73544300989006" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 2.4741099463433005,-24.73544300989006 -6.58125967571503,-18.081862350594292" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.58125967571503,-18.081862350594292 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 19.216869662714927,-42.81730536048435 -4.107149729371729,-42.81730536048435" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -4.107149729371729,-42.81730536048435 2.4741099463433005,-24.73544300989006" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -4.1071497293717405,42.817305360484326 -27.4311691214584,42.81730536048435" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -20.84990944574338,24.735443009890044 -6.5812596757150414,18.081862350594292" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.5812596757150414,18.081862350594292 2.474109946343289,24.735443009890044" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 2.474109946343289,24.735443009890044 -4.1071497293717405,42.817305360484326" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -23.324019392086658,0.0 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,0.0 -6.5812596757150414,18.081862350594292" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 19.216869662714917,42.817305360484326 -4.1071497293717405,42.817305360484326" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 2.474109946343289,24.735443009890044 16.742759716371616,18.081862350594292" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -6.58125967571503,-18.081862350594292 -20.849909445743357,-24.73544300989006" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -4.107149729371729,-42.81730536048435 -27.431169121458392,-42.81730536048435" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.7 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-13.846542682056983,-28.1008804164128 -28.1008804164128,13.846542682057002 13.846542682057002,28.10088041641282 28.10088041641282,-13.846542682056976 -13.846542682056983,-28.1008804164128" style="stroke: none"/>
|
||||
<path d="M 1.3052210657341655e-14,-11.599213430062312 1.3052210657341655e-14,1.3052210657341655e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 1.3052210657341655e-14,1.3052210657341655e-14 11.599213430062331,1.3052210657341655e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 11.599213430062331,1.3052210657341655e-14 28.10088041641282,-13.846542682056983" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 14.25433773435583,-30.34820966840747 1.3052210657341655e-14,-11.599213430062312" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -11.599213430062312,1.3052210657341655e-14 1.3052210657341655e-14,1.3052210657341655e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 1.3052210657341655e-14,-11.599213430062312 -13.846542682056983,-28.1008804164128" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -30.34820966840747,-14.254337734355811 -11.599213430062312,1.3052210657341655e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 1.3052210657341655e-14,11.599213430062331 1.3052210657341655e-14,1.3052210657341655e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -11.599213430062312,1.3052210657341655e-14 -28.1008804164128,13.846542682057002" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -14.254337734355811,30.348209668407492 1.3052210657341655e-14,11.599213430062331" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 1.3052210657341655e-14,11.599213430062331 13.846542682057002,28.100880416412835" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 30.348209668407492,14.254337734355845 11.599213430062331,1.3052210657341655e-14" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="1.3052210657341655e-14" cy="-11.599213430062312" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.4 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-27.388346185684068,15.552128790570096 27.388346185684068,15.74883827878312 27.388346185684068,-15.552128790570105 -27.388346185684068,-15.74883827878312 -27.388346185684068,15.552128790570096" style="stroke: none"/>
|
||||
<path d="M 0.0,0.0 18.78058024161194,-3.9738276119477773" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 18.78058024161194,-3.9738276119477773 22.663104041560562,-4.795340050956219" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 22.663104041560562,-4.795340050956219 28.170870362417894,-5.960741417921666" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 28.170870362417894,-5.960741417921666 18.78058024161194,-35.274794681301" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 0.0,-31.300967069353216 -7.825241767338309,-10.131278518082468" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -7.825241767338309,-10.131278518082468 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -7.825241767338309,-10.131278518082468 -26.605822008950224,-6.15745090613469" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -26.605822008950224,-6.15745090613469 -35.99611212975619,-4.170537100160802" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -7.825241767338293,21.16968855127075 0.0,0.0" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 28.170870362417894,25.340225651431552 18.78058024161194,-3.9738276119477773" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -26.605822008950224,-6.15745090613469 -35.99611212975619,-35.47150416951402" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="0.0" cy="0.0" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.1 KiB |
|
@ -0,0 +1,14 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="566" height="566" viewBox="0 0 566 566">
|
||||
<style type="text/css">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon class="para" points="-25.56565457592529,-32.458940096565556 18.740177802362094,-14.760337551419438 25.56565457592533,32.4589400965656 -18.740177802362055,14.760337551419468 -25.56565457592529,-32.458940096565556" style="stroke: none"/>
|
||||
<path d="M 1.9350685532921533e-14,1.9350685532921533e-14 4.913294272122313,2.836691770617668" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 4.913294272122313,2.836691770617668 9.826588544244606,1.9350685532921533e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 9.826588544244606,1.9350685532921533e-14 15.131587215842616,-22.743292479656972" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -1.9121825014409044,-38.70920233613206 -12.130475445161219,-18.802601627092717" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -12.130475445161219,-18.802601627092717 1.9350685532921533e-14,1.9350685532921533e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 4.913294272122313,2.836691770617668 4.913294272122313,8.510075311852985" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 4.913294272122313,8.510075311852985 21.957063989405853,24.475985168328073" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 21.957063989405853,24.475985168328073 44.305832378287406,17.698602545146148" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 32.17535693312616,-1.1039990819465884 9.826588544244606,1.9350685532921533e-14" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 1.9350685532921533e-14,1.9350685532921533e-14 -22.34876838888153,6.777382623181944" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -5.304998671597992,28.41667602089233 4.913294272122313,8.510075311852985" style="stroke:#000000;stroke-width: 0.2px"/><path d="M -34.47924383404276,-17.698602545146088 -12.130475445161219,-18.802601627092717" style="stroke:#000000;stroke-width: 0.2px"/><path d="M 16.652065317807843,47.219277647985045 21.957063989405853,24.475985168328073" style="stroke:#000000;stroke-width: 0.2px"/><circle cx="1.9350685532921533e-14" cy="1.9350685532921533e-14" r="9.448818897637796" style="stroke:#0000FF;stroke-width: 0.2px;fill:none"/></svg>
|
||||
|
Po Szerokość: | Wysokość: | Rozmiar: 2.5 KiB |
|
@ -0,0 +1,60 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="54.448723"
|
||||
height="270.41568"
|
||||
viewBox="0 0 54.448723 270.41568"
|
||||
version="1.1"
|
||||
id="svg1587"
|
||||
sodipodi:docname="hex_N6-1.svg"
|
||||
inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs1591" />
|
||||
<sodipodi:namedview
|
||||
id="namedview1589"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="4.4026633"
|
||||
inkscape:cx="6.019084"
|
||||
inkscape:cy="65.187815"
|
||||
inkscape:current-layer="svg1587" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style1103"><![CDATA[
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
]]></style>
|
||||
<path
|
||||
id="polygon1415"
|
||||
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linejoin:round"
|
||||
d="M 28.50279,49.119142 17.80901,30.993132 M 35.82617,251.33534 46.24134,270.1248 M 35.82617,251.33534 10.48563,233.20933 M 7.6724495,183.92994 18.08762,202.7194 M 28.22418,12.203682 17.80901,30.993132 m 36.03432,0 -25.34054,18.12601 m 0,0 -10.41517,18.78946 M 36.10478,79.609082 18.08762,67.908602 M 0.34906952,116.52454 25.68962,98.398532 M 46.24134,0.50320245 28.22418,12.203682 m 0,0 L 10.20701,0.50320245 M 35.82617,251.33534 46.51995,233.20933 m 0,0 -10.41517,-18.78945 M 54.12194,202.7194 36.10478,214.41988 m 0,0 L 18.08762,202.7194 M 7.6724495,183.92994 18.36623,165.80393 M 7.9510695,147.01448 25.96823,135.314 m 17.73855,48.61594 -25.34055,-18.12601 m 0,0 L 7.9510695,147.01448 M 54.12194,67.908602 36.10478,79.609082 m 0,0 -10.41517,18.78945 m 0,0 10.69378,18.126008 M 25.96823,135.314 43.98539,147.01448 m -7.602,-30.48994 -10.41516,18.78946"
|
||||
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc" />
|
||||
<polygon
|
||||
class="para"
|
||||
points="300.9571,8.9730035 300.9571,683.027 391.0429,683.027 391.0429,8.9730035 "
|
||||
id="polygon1585"
|
||||
transform="matrix(0.4,0,0,0.4,-110.477,-3.0349275)"
|
||||
style="display:inline"
|
||||
inkscape:label="parallelogram" />
|
||||
<circle
|
||||
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path2736"
|
||||
cx="18.608524"
|
||||
cy="68.284004"
|
||||
r="18.856121" />
|
||||
</svg>
|
Po Szerokość: | Wysokość: | Rozmiar: 2.9 KiB |
|
@ -0,0 +1,58 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="173.76921"
|
||||
height="240.58742"
|
||||
viewBox="0 0 173.76921 240.58742"
|
||||
version="1.1"
|
||||
id="svg800"
|
||||
sodipodi:docname="tile_test4.svg"
|
||||
inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs804" />
|
||||
<sodipodi:namedview
|
||||
id="namedview802"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.86402082"
|
||||
inkscape:cx="239.57756"
|
||||
inkscape:cy="9.2590361"
|
||||
inkscape:current-layer="svg800" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style484"><![CDATA[
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
]]></style>
|
||||
<path
|
||||
id="path1275"
|
||||
style="fill:#8080ff;stroke:#000000;stroke-width:1.2;stroke-linejoin:round"
|
||||
d="m 86.871205,160.29161 -17.3196,-9.99947 M 34.912405,30.29843 H 0.27320508 M 34.912405,50.29738 V 30.29843 m -17.3196,29.99842 17.3196,29.99843 m 34.6392,0 -17.3196,-29.99843 m -17.3196,-9.99947 -17.3196,9.99947 m 34.6392,59.99686 -17.3196,-29.99843 m 0,0 h 34.6392 m 0,0 17.3196,9.99948 m 0,19.99895 h -34.6392 m 17.3196,29.99843 17.3196,-29.99843 m 17.319605,29.99843 -17.319605,9.99947 m 0,0 -17.3196,-9.99947 m 51.958805,-29.99843 -17.3196,29.99843 m 0,0 17.3196,29.99843 m -17.3196,-29.99843 17.3196,29.99843 m 0,0 -17.3196,29.99842 m 0,0 -17.319605,-29.99842 m 0,0 v -19.99896 m 34.639205,19.99896 17.3196,-29.99843 m 17.3196,29.99843 v 19.99894 m 0,0 -17.3196,9.99948 m 0,0 -17.3196,-29.99842 m 0,59.99685 17.3196,-29.99843 m 17.3196,-9.99948 17.3196,9.99948 M 52.232005,0.29999999 34.912405,30.29843 m 0,0 h 34.6392 m -17.3196,29.99842 -17.3196,-9.99947 m 51.9588,9.99947 h -34.6392 m 34.6392,59.99686 h 34.639205 m -17.3196,-29.99843 -17.319605,9.99948 m 0,0 v 19.99895"
|
||||
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
|
||||
<path
|
||||
id="polygon798"
|
||||
class="para"
|
||||
style="display:inline;opacity:0.75;fill:#ff0000;stroke:#ff0000;stroke-width:0.4"
|
||||
d="M 121.51041,240.28742 173.46921,210.28899 52.232005,0.29999999 0.27320508,30.29843 Z" />
|
||||
<circle
|
||||
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path2868"
|
||||
cx="52.644413"
|
||||
cy="60.327888"
|
||||
r="22.86202" />
|
||||
</svg>
|
Po Szerokość: | Wysokość: | Rozmiar: 3.0 KiB |
|
@ -0,0 +1,126 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="13.335566"
|
||||
height="13.458677"
|
||||
viewBox="0 0 13.335566 13.458677"
|
||||
version="1.1"
|
||||
id="svg1847"
|
||||
sodipodi:docname="weird_one.svg"
|
||||
inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs1851" />
|
||||
<sodipodi:namedview
|
||||
id="namedview1849"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="12.423212"
|
||||
inkscape:cx="6.6810418"
|
||||
inkscape:cy="6.6810418"
|
||||
inkscape:current-layer="svg1847" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style1805">
|
||||
polygon.tile { stroke: #000000; stroke-width:3; stroke-linejoin:round }
|
||||
polygon.ih1 { fill: #ffff80 }
|
||||
polygon.ih2 { fill: #8080ff }
|
||||
polygon.ih3 { fill: #ff8080 }
|
||||
polygon.ih4 { fill: #80ff80 }
|
||||
polygon.ih5 { fill: #ff80ff }
|
||||
polygon.ih6 { fill: #80ffff }
|
||||
polygon.para {opacity: 0.75; fill: #ff0000; stroke: #ff0000 }
|
||||
</style>
|
||||
<polygon
|
||||
class="para"
|
||||
points="20.760388,31.028173 40.611439,80.655801 76.548687,66.280902 56.697636,16.653274 "
|
||||
style="stroke:none"
|
||||
id="polygon1807"
|
||||
transform="matrix(0.2,0,0,0.2,-3.3510879,-2.6724826)" />
|
||||
<path
|
||||
d="m 6.3798191,7.0584244 h 2.977658"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1809" />
|
||||
<path
|
||||
d="M 9.3574771,7.0584244 V 4.0807674"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1811" />
|
||||
<path
|
||||
d="M 9.3574771,0.11055638 6.3798191,7.0584244"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1813" />
|
||||
<path
|
||||
d="M 6.3798191,7.0584244 13.327687,10.036082"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1815" />
|
||||
<path
|
||||
d="M 11.171453,12.089639 9.1178961,9.9334044"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1817" />
|
||||
<path
|
||||
d="M 9.1178961,9.9334044 7.9884391,8.7474754"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1819" />
|
||||
<path
|
||||
d="m 7.9884391,8.7474754 -1.60862,-1.689051"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1821" />
|
||||
<path
|
||||
d="m 2.1700281,2.9855364 v 3.97021"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1823" />
|
||||
<path
|
||||
d="M 2.1700281,6.9557464 5.1476851,0.00787838"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1825" />
|
||||
<path
|
||||
d="m 2.1700281,9.9334044 h 3.97021"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1827" />
|
||||
<path
|
||||
d="m 6.1402381,9.9334044 h 2.977658"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1829" />
|
||||
<path
|
||||
d="M 9.1178961,9.9334044 2.1700281,6.9557464"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1831" />
|
||||
<path
|
||||
d="M 6.1402381,9.9334044 V 12.911062"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1833" />
|
||||
<path
|
||||
d="m 2.1700281,6.9557464 2.156234,-2.053557"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1835" />
|
||||
<path
|
||||
d="m 4.3262621,4.9021894 2.053557,2.156235"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1837" />
|
||||
<path
|
||||
d="m 4.3262621,4.9021894 1.751941,-1.668515"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1839" />
|
||||
<path
|
||||
d="m 6.0782031,3.2336744 1.123039,-1.069561"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1841" />
|
||||
<path
|
||||
d="m 0.0137931,5.0390934 2.156235,-2.053557"
|
||||
style="stroke:#000000;stroke-width:0.04px"
|
||||
id="path1843" />
|
||||
<circle
|
||||
cx="6.3798203"
|
||||
cy="7.0584254"
|
||||
r="1.8897638"
|
||||
style="fill:none;stroke:#0000ff;stroke-width:0.04px"
|
||||
id="circle1845" />
|
||||
</svg>
|
Po Szerokość: | Wysokość: | Rozmiar: 3.9 KiB |