From f6bc1efbaed1a62de34ddf54ed7c33baf5ab096c Mon Sep 17 00:00:00 2001 From: Joe Ardent Date: Tue, 10 Jan 2023 21:57:37 -0800 Subject: [PATCH] put an hr before the tags in pages --- content/sundries/a-very-digital-artifact/index.md | 13 +++++++------ templates/page.html | 1 + 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/content/sundries/a-very-digital-artifact/index.md b/content/sundries/a-very-digital-artifact/index.md index fa9fd9c..d526e06 100644 --- a/content/sundries/a-very-digital-artifact/index.md +++ b/content/sundries/a-very-digital-artifact/index.md @@ -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 diff --git a/templates/page.html b/templates/page.html index fc9ac2b..1147d9b 100644 --- a/templates/page.html +++ b/templates/page.html @@ -2,5 +2,6 @@ {% block main_content %} {{ post_macros::content(page=page) }} +
{{ post_macros::tags(page=page, short=true) }} {% endblock main_content %}