Wiki source code of 3D Printing

Version 62.1 by Josh McGee on 2025/11/19 11:07

Hide last authors
Josh McGee 22.1 1 = **Slicing** =
Josh McGee 18.1 2
Josh McGee 19.1 3 {{include page="Workflows/3D Printing/Slicing"/}}
Josh McGee 18.1 4
Josh McGee 19.1 5
Josh McGee 23.1 6 = **Preparing To Print** =
Josh McGee 19.1 7
Josh McGee 35.3 8 {{include page="Workflows/3D Printing/Preparing To Print"/}}
Josh McGee 19.1 9
Josh McGee 24.1 10 = **Preparing To Print** =
11
12 Follow the printing guide for your 3d printer:
13
Josh McGee 35.1 14 ??? ADD SOME KIND OF TOC SUBTREE HERE ???
Josh McGee 36.1 15
16
Josh McGee 37.1 17 {{velocity}}
Josh McGee 55.1 18 #macro(list3DPrintersSubpages)
19 #set($wikiName = $xcontext.database)
20 #set($parentRef = $services.model.createDocumentReference(
21 $wikiName,
Josh McGee 61.1 22 ['Areas', 'Upstairs', '3D Printing'],
Josh McGee 57.1 23 'WebHome'
Josh McGee 55.1 24 ))
25 #set($parentDoc = $xwiki.getDocument($parentRef))
Josh McGee 54.1 26 #set($children = $parentDoc.getChildren())
Josh McGee 51.1 27
Josh McGee 54.1 28 #if(!$children || $children.isEmpty())
Josh McGee 55.1 29 No subpages found under [[Areas.Upstairs.3D Printers]].
Josh McGee 52.1 30 #else
Josh McGee 54.1 31 #foreach($childRef in $children)
32 #set($childDoc = $xwiki.getDocument($childRef))
Josh McGee 62.1 33 #set($title = $childDoc.getDisplayTitle())
34 ## Skip "Page Administration" pages
35 #if ($title != 'Page Administration')
36 * [[$title>>$childDoc]]
37 #end
Josh McGee 37.1 38 #end
39 #end
40 #end
41
Josh McGee 55.1 42 #list3DPrintersSubpages()
Josh McGee 37.1 43 {{/velocity}}
44
Josh McGee 38.1 45
Josh McGee 57.1 46
Josh McGee 62.1 47