put an hr before the tags in pages

This commit is contained in:
Joe Ardent 2023-01-10 21:57:37 -08:00
parent 5ab8c6a07c
commit f6bc1efbae
2 changed files with 8 additions and 6 deletions

View File

@ -67,11 +67,11 @@ described by three 3D points, forming a "mesh" in the shape of the thing you're
format is popular with 3D printers, which is how I became familiar with it.
This format is simple to implement and easy for a computer to read, but if you have a model in that
format that you need to manipulate, you won't have a good time. In order to actually do things like
change the shape of the model, it needs to be converted into a CAD program's native representation
of a "solid body", which is pretty much what it sounds like: a shape made of a finite volume of
"stuff", instead of an infinitesimally thin shell enclosing an empty volume, which is what the mesh
is.
format that you need to manipulate, like you want to merge it with another shape, you won't have a
good time. In order to actually do things like change the shape of the model, it needs to be
converted into a CAD program's native representation of a "solid body", which is pretty much what it
sounds like: a shape made of a finite volume of "stuff", and NOT just an infinitesimally thin shell
enclosing an empty volume, which is what the STL mesh is.
In order for the CAD program to convert a mesh into a solid body, the mesh must be *manifold*,
meaning, no missing faces (triangles), and with a clearly-defined interior and exterior (all
@ -83,11 +83,12 @@ The CNC shop had requested a model in a format called
[ST**P**](https://www.fastradius.com/resources/everything-you-need-to-know-about-step-files/). `.stp`
is the extension for a "STEP" file; STEP is supposed to be short for "standard for the exchange of
product data", so someone was playing pretty fast and loose with their initialisms, but I
digress. But the main thing about STEP files is that CAD programs can really easily convert them
digress. The main thing about STEP files is that CAD programs can really easily convert them
into their native internal solid body representation, which allows easy manipulation.
But so far, I had nothing at all. Time to get some data and see if I can turn it into a model.
# Public data

View File

@ -2,5 +2,6 @@
{% block main_content %}
{{ post_macros::content(page=page) }}
<hr>
{{ post_macros::tags(page=page, short=true) }}
{% endblock main_content %}