Loading SVGs with SVGShape
The SVGShape
component in the foundation
library allows you to integrate SVG
graphics into your CAD projects seamlessly. This guide provides an overview of
its functionalities, supported SVG features, and best practices for creating
compatible SVG files.
Overview
SVGShape
is designed to convert SVG paths and text into 3D models that can be
used for laser cutting, 3D printing, or other manufacturing processes. It parses
the SVG data, extracts geometric information, and creates corresponding sketch
geometry. Here is the signature of the SVGShape class:
SVGShape(sketch: Sketch, svg: str, xshift: float = 0, yshift: float = 0, angle:float=0., scale: float = 1)
Note that the angle is in radians.
Supported SVG Features
1. Path Elements
- Description: SVG
<path>
elements define complex shapes using a series of commands (e.g.,M
for move,L
for line,C
for cubic Bezier curves). - Usage: Ideal for intricate designs, logos, and custom shapes.
- Example:
The string M10 10 H 90 V 90 H 10 L 10 10
is an SVG path definition. It
describes a series of drawing commands that create a shape. Let’s break it down
step by step:
- M10 10: “Move” to the point (10, 10). This is the starting point.
- H 90: Draw a horizontal line to x-coordinate 90 (y remains 10).
- V 90: Draw a vertical line to y-coordinate 90 (x remains 90).
- H 10: Draw a horizontal line back to x-coordinate 10 (y remains 90).
- L 10 10: Draw a line to the point (10, 10), which is where we started.
In simpler terms, this path draws a square with its top-left corner at (10, 10) and its bottom-right corner at (90, 90). The square is drawn in a clockwise direction.
The resulting shape would look like this:
(10,10) +-----------------+ (90,10)
| |
| |
| |
| |
| |
(10,90) +-----------------+ (90,90)
However the viewbox is set to (0, 0)
to (100, 100)
, and by default the
SVGShape will bring the center of the viewbox to the origin of the sketch. So
the square will be centered at the origin and have sides of 80 mm.
2. Text Elements
- Description: SVG
<text>
elements allow you to include textual content with specified fonts and sizes. - Usage: Perfect for adding labels, names, or any textual information to your designs.
- Example:
3. Other shapes : Circle, Ellipse, Polygon, Rect
SVGShape supports various other SVG shape elements, allowing you to create complex designs with ease. Here’s an example demonstrating Circle, Ellipse, Line, Polyline, and Polygon shapes:
4. Example loading a Mountain logo
Limitations
While SVGShape
is a powerful tool, it’s essential to be aware of its current
limitations to ensure smooth integration:
1. Simplistic SVGs Only
- Explanation: Complex SVGs with multiple nested groups, intricate filters, or advanced styling may not be fully supported.
- Recommendation: Use simple SVGs with clear path and text elements. Avoid unnecessary layers or complex transformations.
2. Font Limitations
- Supported Fonts: Only a subset of fonts are supported on the
Playground
environment. Ensure that the font used in your SVG is available.
Example: Creating a Custom Sign
Refer to the
Creating a Customizable Laser-Cut Office Sign
tutorial for a comprehensive example of using SVGShape
with both path and text
elements to create a 3D sign model.
Conclusion
SVGShape
is a versatile component for integrating SVG graphics into Replicad
projects. By adhering to the supported features and best practices outlined in
this guide, you can create detailed and customizable 3D models suitable for
various manufacturing processes.