-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsnip.Femur.main-1.any
More file actions
53 lines (40 loc) · 1.13 KB
/
snip.Femur.main-1.any
File metadata and controls
53 lines (40 loc) · 1.13 KB
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
//expect_errors = ["<ObjectName>", "Model loading skipped"]
// Todo: Write a small description of your model here
Main = {
// The actual body model goes in this folder
AnyFolder MyModel = {
// Global Reference Frame
AnyFixedRefFrame GlobalRef = {
// Todo: Add points for grounding of the model here
}; // Global reference frame
// Todo. Add the model elements such as
// segments, joints, and muscles here.
AnySeg SourceFemur = {
Mass = 0; Jii = {0, 0, 0};
AnyDrawSurf Surface = {
FileName = "SourceFemur.stl";
RGB = {222,202,176}/256;
};
};
//# BEGIN SNIPPET 1
AnySeg TargetFemur = {
Mass = 0; Jii = {0, 0, 0};
AnyDrawSurf Surface = {
FileName = "TargetFemur.stl";
RGB = {256,256,0}/256;
};
};
§AnyFunTransform3DLin2 <ObjectName> = {
//PreTransforms = {};
Points0 = ;
Points1 = ;
//Mode = VTK_LANDMARK_RIGIDBODY;
};§
}; // MyModel
//# END SNIPPET 1
// The study: Operations to be performed on the model
AnyBodyStudy MyStudy = {
AnyFolder &Model = .MyModel;
Gravity = {0.0, -9.81, 0.0};
};
}; // Main