Updating docs, add franck's logo

pull/292/head
Rob 2025-01-30 12:54:38 -05:00
rodzic f4c5744bd4
commit dec577f1b8
5 zmienionych plików z 6 dodań i 5 usunięć

Wyświetl plik

@ -1,6 +1,6 @@
<div align="center">
![Fabex CNC CAM extension for Blender](scripts/addons/docs/_static/logo.png)
![Fabex CNC CAM extension for Blender](scripts/addons/docs/_static/fabex_logo_rectangle.png)
- - -

Wyświetl plik

@ -6,7 +6,10 @@ Operators that perform various functions on existing curves.
from math import pi, tan
import shapely
from shapely.geometry import LineString
from shapely.geometry import (
LineString,
MultiLineString,
)
import bpy
from bpy.props import (
@ -265,8 +268,6 @@ class CamCurveSimpleOvercuts(Operator):
for s in shapes.geoms:
s = shapely.geometry.polygon.orient(s, 1)
if s.boundary.geom_type == "LineString":
from shapely.geometry import MultiLineString
loops = MultiLineString([s.boundary])
else:
loops = s.boundary

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 64 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 68 KiB

Wyświetl plik

@ -56,7 +56,7 @@ add_module_names = False
html_theme = "sphinx_book_theme"
html_static_path = ["_static"]
html_logo = "_static/logo_blendercam.png"
html_logo = "_static/Fabex_logo_square.png"
html_theme_options = {
"icon_links": [
{