-
-
Notifications
You must be signed in to change notification settings - Fork 382
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #442 from Kitware/better-ConcentricCylinderSource
fix(ConcentricCylinderSource): Add support for masking layers
- Loading branch information
Showing
3 changed files
with
244 additions
and
40 deletions.
There are no files selected for viewing
72 changes: 72 additions & 0 deletions
72
Sources/Filters/Sources/ConcentricCylinderSource/example/controlPanel.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<table> | ||
<tr> | ||
<td colspan="2"> | ||
[s] for surface <br/> [w] for wireframe | ||
</td> | ||
</tr> | ||
<tr> | ||
<td colspan="2"> | ||
<hr/> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Skip Inner cells</td> | ||
<td> | ||
<input class='skipInnerFaces' type="checkbox" checked /> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td colspan="2"> | ||
<hr/> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Hide Layer 0</td> | ||
<td> | ||
<input class='mask' data-layer="0" type="checkbox" /> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Hide Layer 1</td> | ||
<td> | ||
<input class='mask' data-layer="1" type="checkbox" /> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Hide Layer 2</td> | ||
<td> | ||
<input class='mask' data-layer="2" type="checkbox" /> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Hide Layer 3</td> | ||
<td> | ||
<input class='mask' data-layer="3" type="checkbox" /> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Hide Layer 4</td> | ||
<td> | ||
<input class='mask' data-layer="4" type="checkbox" /> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Hide Layer 5</td> | ||
<td> | ||
<input class='mask' data-layer="5" type="checkbox" /> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Hide Layer 6</td> | ||
<td> | ||
<input class='mask' data-layer="6" type="checkbox" /> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Hide Layer 7</td> | ||
<td> | ||
<input class='mask' data-layer="7" type="checkbox" /> | ||
</td> | ||
</tr> | ||
|
||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters