-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEnvironment.any
More file actions
36 lines (32 loc) · 1.16 KB
/
Environment.any
File metadata and controls
36 lines (32 loc) · 1.16 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
AnyFolder Environment = {
//^ Environment files are used to include objects surrounding human,
//^ e.g. global reference frame
AnyFixedRefFrame GlobalRef =
{
AnyDrawRefFrame drw={ScaleXYZ=0.3*{1,1,1};};
AnyRefNode RightFootPrint = {
//^ Positioning of the right foot.
//^ Ground-foot constraints can be excluded with: #define EXCLUDE_FOOT_CONSTRAINTS
sRel = HeelPosition;
ARel = RotMat({0,0,0}, ToeDirection, {0,10,0});
AnyDrawRefFrame drw = {RGB = {0,0.7,0}; ScaleXYZ = 0.1*{1,1,1};};
};
AnyRefNode LeftFootPrint = {
//^ Positioning of the right foot.
//^ Ground-foot constraints can be excluded with: #define EXCLUDE_FOOT_CONSTRAINTS
sRel = HeelPosition;
ARel = RotMat({0,0,0}, ToeDirection, {0,10,0});
AnyDrawRefFrame drw = {RGB = {0,0.7,0}; ScaleXYZ = 0.1*{1,1,1};};
};
//# BEGIN SNIPPET 1
}; // End of GlobalRef
§AnySeg &RiArm = Main.HumanModel.BodyModel.Right.ShoulderArm.Seg.Clavicula;
RiArm ={
AnyRefNode localrefframe={
sRel = {0,0,0};
// ARel = RotMat(0.5*pi,x);
AnyDrawRefFrame drws = {ScaleXYZ = {1,1,1}*0.3;RGB={0,0,1};};
};
};§
};
//# END SNIPPET 1