source:
cpp/frams/model/defassign-f0-SDK.h
@
938
Last change on this file since 938 was 934, checked in by , 5 years ago | |
---|---|
|
|
File size: 1.1 KB |
Rev | Line | |
---|---|---|
[286] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
[915] | 2 | // Copyright (C) 1999-2020 Maciej Komosinski and Szymon Ulatowski. |
[286] | 3 | // See LICENSE.txt for details. |
[109] | 4 | |
5 | ||
6 | ||
7 | ||
[121] | 8 | |
[109] | 9 | void Part::defassign() |
10 | { | |
11 | shape=0; | |
12 | size=1.0; | |
13 | scale.x=1.0; | |
14 | scale.y=1.0; | |
15 | scale.z=1.0; | |
[270] | 16 | hollow=0; |
[109] | 17 | density=1.0; |
18 | friction=0.4; | |
19 | ingest=0.25; | |
20 | assim=0.25; | |
21 | vis_style="part"; | |
22 | vsize=0.2; | |
[507] | 23 | vcolor.x=1.0; |
24 | vcolor.y=1.0; | |
25 | vcolor.z=1.0; | |
[109] | 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 | ||
[932] | 60 | |
[934] | 61 | |
62 | ||
63 | void Part_MinMaxDef::defassign() | |
64 | { | |
65 | volume=1; | |
66 | } | |
67 | ||
68 | ||
69 | ||
70 | ||
71 | ||
72 | ||
73 | ||
74 | ||
75 | ||
76 | ||
77 | ||
78 | ||
79 | ||
80 | ||
81 | ||
82 | ||
83 | ||
84 | ||
85 | ||
86 | ||
87 | ||
88 | ||
89 | ||
90 | ||
91 | ||
92 | ||
93 | ||
94 | ||
95 | ||
96 | ||
97 | ||
98 | ||
99 | ||
100 | ||
101 | ||
102 | ||
[109] | 103 | void Joint::defassign() |
104 | { | |
105 | p1_refno=-1; | |
106 | p2_refno=-1; | |
107 | d.x=0; | |
108 | d.y=0; | |
109 | d.z=0; | |
110 | shape=0; | |
[915] | 111 | hinge_pos.x=0; |
112 | hinge_pos.y=0; | |
113 | hinge_pos.z=0; | |
114 | hinge_rot.x=0; | |
115 | hinge_rot.y=0; | |
116 | hinge_rot.z=0; | |
117 | hinge_limit_x[0]=-1.5708; | |
118 | hinge_limit_x[1]=1.5708; | |
119 | hinge_limit_y[0]=-1.5708; | |
120 | hinge_limit_y[1]=1.5708; | |
[109] | 121 | stif=1.0; |
122 | rotstif=1.0; | |
123 | stamina=0.25; | |
124 | vis_style="joint"; | |
[507] | 125 | vcolor.x=1.0; |
126 | vcolor.y=1.0; | |
127 | vcolor.z=1.0; | |
[109] | 128 | } |
129 | ||
130 | ||
131 | ||
132 | ||
133 | ||
134 | ||
135 | ||
136 | ||
137 | ||
138 | ||
139 | ||
140 | ||
141 | ||
142 | ||
143 | ||
144 | ||
145 | ||
146 | ||
147 | ||
148 | ||
149 | ||
150 | ||
151 | ||
152 | ||
153 | ||
154 | ||
155 | ||
156 | ||
157 | ||
158 | ||
159 | ||
160 | ||
161 | ||
162 | ||
163 | ||
[932] | 164 | |
[934] | 165 | |
166 | ||
[109] | 167 | void Neuro::defassign() |
168 | { | |
169 | part_refno=-1; | |
170 | joint_refno=-1; | |
171 | ||
172 | vis_style="neuro"; | |
173 | } | |
174 | ||
175 | ||
176 | ||
177 | ||
178 | ||
179 | ||
180 | ||
181 | ||
182 | ||
183 | ||
184 | ||
185 | ||
186 | ||
187 | ||
188 | ||
189 | ||
190 | ||
191 | ||
192 | ||
193 | ||
194 | ||
195 | ||
196 | ||
197 | ||
198 | ||
199 | ||
200 | ||
201 | ||
202 | ||
203 | ||
204 | ||
205 | ||
206 | ||
[932] | 207 | |
[934] | 208 | |
209 | ||
[109] | 210 | void NeuroConn::defassign() |
211 | { | |
212 | n1_refno=-1; | |
213 | n2_refno=-1; | |
214 | weight=1.0; | |
215 | } | |
216 | ||
217 | ||
218 | ||
219 | ||
220 | ||
221 | ||
222 | ||
223 | ||
224 | ||
225 | ||
226 | ||
227 | ||
228 | ||
229 | ||
230 | ||
231 | ||
232 | ||
233 | ||
234 | ||
[932] | 235 |
Note: See TracBrowser
for help on using the repository browser.