add note about freecad constraints
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
2fb22d8d6a
commit
c9dc801ea6
7 changed files with 38 additions and 5 deletions
|
@ -148,6 +148,14 @@ The trim tool works pretty well, but it seems to delete constraints... but only
|
||||||
|
|
||||||
I really don't get this. If I'm drawing a line that connects two already horizontally aligned dots, why does FreeCAD add a horizontal constraint *anyway*? It creates a redundant constraint that messes up everything and it seems so easy to avoid. These issues are everywhere and make the sketcher miserable to use.
|
I really don't get this. If I'm drawing a line that connects two already horizontally aligned dots, why does FreeCAD add a horizontal constraint *anyway*? It creates a redundant constraint that messes up everything and it seems so easy to avoid. These issues are everywhere and make the sketcher miserable to use.
|
||||||
|
|
||||||
|
{{< update "2023-09-18" >}}
|
||||||
|
You can actually make this way less frustrating by enabling "Auto remove redundants" from the Constraint menu settings:
|
||||||
|
|
||||||
|
![The "Auto remove redundants" options in the Constraints menu](/media/freecad/redu.png)
|
||||||
|
|
||||||
|
Please make this the default!
|
||||||
|
{{</ update >}}
|
||||||
|
|
||||||
#### 4. The camera is ass to control
|
#### 4. The camera is ass to control
|
||||||
|
|
||||||
I don't know what their problem is, but both Trackball and Turntables (they have two "turntable" options) orbit systems are very uncomfortable to use. Turntable completely blocks one axis of rotation and seems to always orbit from the wrong place (it places the origin in some imaginary spot at the center of the screen rather than say, the object) and trackball is just insanely finnicky.
|
I don't know what their problem is, but both Trackball and Turntables (they have two "turntable" options) orbit systems are very uncomfortable to use. Turntable completely blocks one axis of rotation and seems to always orbit from the wrong place (it places the origin in some imaginary spot at the center of the screen rather than say, the object) and trackball is just insanely finnicky.
|
||||||
|
|
BIN
static/media/freecad/redu.avif
Normal file
BIN
static/media/freecad/redu.avif
Normal file
Binary file not shown.
BIN
static/media/freecad/redu.png
Normal file
BIN
static/media/freecad/redu.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
BIN
static/media/solidedge/grey.avif
Normal file
BIN
static/media/solidedge/grey.avif
Normal file
Binary file not shown.
BIN
static/media/solidedge/grey.png
Normal file
BIN
static/media/solidedge/grey.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 84 KiB |
|
@ -7,6 +7,8 @@ $table-border-color: $color-very-light-border;
|
||||||
$toc-border: 1px solid #333;
|
$toc-border: 1px solid #333;
|
||||||
$toc-color: #d1e3e8;
|
$toc-color: #d1e3e8;
|
||||||
$toc-label-color: #96ccff;
|
$toc-label-color: #96ccff;
|
||||||
|
$update-label-color: #96ccff;
|
||||||
|
$update-border: 1px solid #333;
|
||||||
$caption-color: #bfb1bf;
|
$caption-color: #bfb1bf;
|
||||||
$bold-color: #e7aeff;
|
$bold-color: #e7aeff;
|
||||||
$h2-color: #fffdca;
|
$h2-color: #fffdca;
|
||||||
|
@ -18,7 +20,8 @@ $h3-color: #d1c5f8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tldr,
|
.tldr,
|
||||||
.toc {
|
.toc,
|
||||||
|
.update {
|
||||||
border: $tldr-border;
|
border: $tldr-border;
|
||||||
padding: 5pt 10pt;
|
padding: 5pt 10pt;
|
||||||
margin-top: 14pt;
|
margin-top: 14pt;
|
||||||
|
@ -26,7 +29,6 @@ $h3-color: #d1c5f8;
|
||||||
font-family: $iosevka;
|
font-family: $iosevka;
|
||||||
position: relative;
|
position: relative;
|
||||||
font-size: 11pt;
|
font-size: 11pt;
|
||||||
color: $tldr-color;
|
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
|
|
||||||
@media (max-width: $screen-width) {
|
@media (max-width: $screen-width) {
|
||||||
|
@ -35,17 +37,29 @@ $h3-color: #d1c5f8;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
color: $tldr-label-color;
|
|
||||||
content: "TL;DR";
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
font-size: 8pt;
|
font-size: 8pt;
|
||||||
left: 4pt;
|
left: 4pt;
|
||||||
top: -8pt;
|
top: -8pt;
|
||||||
border: $tldr-border;
|
|
||||||
background-color: $color-bg;
|
background-color: $color-bg;
|
||||||
padding: 1pt 5pt;
|
padding: 1pt 5pt;
|
||||||
}
|
}
|
||||||
|
p:first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
p:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tldr {
|
||||||
|
color: $tldr-color;
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
color: $tldr-label-color;
|
||||||
|
content: "TL;DR";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
|
@ -136,3 +150,11 @@ $h3-color: #d1c5f8;
|
||||||
content: " └─ ";
|
content: " └─ ";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.update {
|
||||||
|
&:before {
|
||||||
|
color: $update-label-color;
|
||||||
|
content: "Update " attr(data-title);
|
||||||
|
border: $update-border;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
3
themes/fesite/layouts/shortcodes/update.html
Normal file
3
themes/fesite/layouts/shortcodes/update.html
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<div class="update" {{with (.Get 0)}} data-title="{{.}}" {{end}}>
|
||||||
|
{{.Inner|markdownify}}
|
||||||
|
</div>
|
Loading…
Reference in a new issue