-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass_stp_bound.m
30 lines (23 loc) · 894 Bytes
/
class_stp_bound.m
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
classdef class_stp_bound < handle
% class definition for bound obtained by a .stp (step) import
%
% 2023, UniBW, Department of Civil Engineering and Environmental Sciences
% M. Loibl
% declare all parameters
properties
bound_nr
type % inner or outer
curves % list of boundary curves
patch
trimming_curves % list of trimming curves (it is a subgroup of the curves list)
trimmed_edges % list of trimmed edges which indicates it is a "trimmed" ...
% part of the outer boundary of the untrimmed patch ...
% (it is a subgroup of the curves list)
end
methods
% initialize all parameters
function bound = class_stp_bound()
% nothing initialized; everything added step by step
end
end
end