Image Segmentation
Fast Print
English
art
3D
3D-Printing
Manufacturing
Firmware
Cuda
Cude-Acceleration
GPU
Instructions to use OpenPeerAI/FastPrint with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Fast Print
How to use OpenPeerAI/FastPrint with Fast Print:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
File size: 672 Bytes
b6a0fc3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <Window x:Class="FastPrint.UI.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="FastPrint 3D Slicer" Height="600" Width="900">
<DockPanel>
<ToolBar DockPanel.Dock="Top">
<Button Content="Open STL" Click="OpenSTL_Click"/>
<Button Content="Slice" Click="Slice_Click"/>
<ComboBox x:Name="PortSelector" Width="120"/>
<Button Content="Connect" Click="Connect_Click"/>
</ToolBar>
<Grid>
<Viewport3D x:Name="viewport"/>
</Grid>
</DockPanel>
</Window> |