2020-07-24
12:51 AM
- last edited on
2022-09-26
10:48 PM
by
Daniel Kassai
PROJECT2{4} 3, ! projection_code = 3 (top view),
270, ! angle = 270
1, ! useTransparency = off,
1+2, ! statusParts = 1 + 2 (all parts)
1, ! number of cutplanes (can be 0 but 1 or more preferred)
18", ! cutplane height
! UNSCLICED OBJECTS ONLY (VIEWED FROM TOP)
3, ! method (0 = hidden, 1 = wireframe, 2= hidden lines, 3 = shading)
1+2+4+8+16+32, ! parts to generate
2, ! cut fill index
1, ! cut fill pen
-1, ! cut fill background pen
0.0, ! cut fill origin x,
0.0, ! cut fill origin y
0.0, ! cut fill direction angle
1, ! cut line pen
1, ! cut line type
2, ! projected fill index
247, ! projected fill pen
121, ! projected fill background pen
0.0, ! projected fill originsx,
0.0, ! projected fill origin y
0.0, ! projected fill direction
248, ! projected line pen
1, ! projected line type
! SLICED OBJECT
2 + 16 + 32 + 128 + 4096,! method (1 = wireframe, 2= hidden lines, 3 = shading)
1+2+4+8+16+32, ! parts to generate
2, ! cut fill index
245, ! cut fill pen
245, ! cut fill background pen
0.0, ! cut fill origin x,
0.0, ! cut fill origin y
0.0, ! cut fill direction angle
245, ! cut line pen
1, ! cut line type
1, ! projected fill index
248, ! projected fill pen
121, ! projected fill background pen
0.0, ! projected fill originsx,
0.0, ! projected fill origin y
0.0, ! projected fill direction
253, ! projected line pen
1 ! projected line type
2020-07-24 03:51 AM
| AC22-28 AUS 3110 | Help Those Help You - Add a Signature |
| Self-taught, bend it till it breaks | Creating a Thread |
| Win11 | i9 10850K | 64GB | RX6600 | Win11 | R5 2600 | 16GB | GTX1660 |
2020-07-24 02:43 PM
2020-07-27 12:06 PM
rotz 45 rotx 45 roty 45 block 1,1,1 del 3With 0 cutplanes the cutplane height mustn't be given, we are viewing the whole model from infinity:
project2{4} 3, 270, ! projection_code, angle,
0, 1 + 2, ! useTransparency, statusParts,
0, ! numCutplanes,
! 1, ! cutplaneHeight1,
3 + 32, 4 + 8, ! method1, parts1,
0, ! cutFillIndex1,
0, 0, ! cutFillFgPen1, cutFillBgPen1,
0, 0, ! cutFillOrigoX1, cutFillOrigoY1,
0, ! cutFillDirection1,
0, 0, ! cutLinePen1, cutLineType1,
coverfill, ! projectedFillIndex1,
viewpen, 0, ! projectedFillFgPen1, projectedFillBgPen1,
0, 0, ! projectedFillOrigoX1, projectedFillOrigoY1,
0, ! projectedFillDirection1,
viewpen, solidline ! projectedLinePen1, projectedLineType1
The parameters commented cut... are irrelevant here.project2{4} 3, 270, ! projection_code, angle,
1, 1 + 2, ! useTransparency, statusParts,
1, ! numCutplanes,
1, ! cutplaneHeight1,
! slice cutplane to bottom: shading with attribute override, cut and view
3 + 32, 1 + 2 + 4 + 8, ! method1, parts1,
cutfill, ! cutFillIndex1,
cutpen, 0, ! cutFillFgPen1, cutFillBgPen1,
0, 0, 0, ! cutFillOrigoX1, cutFillOrigoY1, cutFillDirection1,
cutpen, solidline, ! cutLinePen1, cutLineType1,
coverfill, ! projectedFillIndex1,
viewpen, 0, ! projectedFillFgPen1, projectedFillBgPen1,
0, 0, ! projectedFillOrigoX1, projectedFillOrigoY1,
0, ! projectedFillDirection1,
viewpen, solidline, ! projectedLinePen1, projectedLineType1
! slice top to cutplane: wireframe with attribute override, view
1 + 32, 8, ! method(numCutplanes+1)), parts(numCutplanes+1),
0, ! cutFillIndex(numCutplanes+1),
0, 0, ! cutFillFgPen(numCutplanes+1), cutFillBgPen(numCutplanes+1),
0, 0, ! cutFillOrigoX(numCutplanes+1), cutFillOrigoY(numCutplanes+1),
0, ! cutFillDirection(numCutplanes+1),
0, 0, ! cutLinePen(numCutplanes+1), cutLineType(numCutplanes+1),
0, ! projectedFillIndex(numCutplanes+1),
0, 0, ! projectedFillFgPen(numCutplanes+1), projectedFillBgPen(numCutplanes+1),
0, 0, ! projectedFillOrigoX(numCutplanes+1), projectedFillOrigoY(numCutplanes+1),
0, ! projectedFillDirection(numCutplanes+1),
overheadpen, dashedline ! projectedLinePen(numCutplanes+1), projectedLineType(numCutplanes+1)
2020-07-28 02:34 AM