-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathschema.py
71 lines (47 loc) · 925 Bytes
/
schema.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# generated by datamodel-codegen:
# filename: dir.json
# timestamp: 2024-01-10T12:47:54+00:00
from __future__ import annotations
from dataclasses import dataclass
from typing import List, Optional
@dataclass
class Assembly:
ref: str
@dataclass
class Classification:
name: str
@dataclass
class Contain:
ref: str
@dataclass
class Point:
x: float
y: float
@dataclass
class Polyline:
points: List[Point]
@dataclass
class Geometry:
ref: str
@dataclass
class Relativeplacement:
location: List[float]
axes: Optional[List[List[float]]] = None
ref: Optional[str] = None
@dataclass
class Trianglemesh:
positions: List
indices: List
normals: Optional[List] = None
@dataclass
class Type:
ref: str
@dataclass
class Component:
type: str
entity: str
tag: Optional[str] = None
@dataclass
class Extrusion:
profile: Polyline
depth: float