13 lines
278 B
Python
13 lines
278 B
Python
|
import math
|
||
|
from dataclasses import dataclass, field
|
||
|
import cadquery as Cq
|
||
|
from nhf import Material, Role
|
||
|
from nhf.build import Model, target, assembly
|
||
|
import nhf.utils
|
||
|
|
||
|
@dataclass
|
||
|
class Epaulette(Model):
|
||
|
|
||
|
def __post_init__(self):
|
||
|
super().__init__(name="epaulette")
|