API Reference
Package
BaseSOFAController
This class is a pure python reimplementation of a SOFA controller. It provides read/write access to SOFA data
You may override the callbacks before_animate and after_animate in a subclass.
Source code in gdsofa/controller/controller.py
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 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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 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 164 165 166 167 168 169 170 171 172 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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | |
after_animate()
EndAnimateEvent
Source code in gdsofa/controller/controller.py
66 67 68 | |
after_init()
Event triggered after components init
Source code in gdsofa/controller/controller.py
70 71 72 | |
before_animate()
BeginAnimateEvent
Source code in gdsofa/controller/controller.py
62 63 64 | |
get_json(s)
Deserialize json data to python dictionnary
Source code in gdsofa/controller/controller.py
172 173 174 175 176 | |
get_map_coord(s)
Cast SOFA data to python dictionnary str:numpy array
using MapCoord = std::map
Source code in gdsofa/controller/controller.py
191 192 193 194 195 196 197 198 199 200 201 202 | |
get_map_real(s)
Cast SOFA data to python dictionnary str:float
using MapReal = std::map
Source code in gdsofa/controller/controller.py
178 179 180 181 182 183 184 185 186 187 188 189 | |
get_map_vec_coord(s)
Cast SOFA data to python dictionnary str:numpy array
using MapVecCoord = std::map
Source code in gdsofa/controller/controller.py
217 218 219 220 221 222 223 224 225 226 227 228 229 | |
get_map_vec_real(s)
Cast SOFA data to python dictionnary str:numpy array
using MapVecReal = std::map
Source code in gdsofa/controller/controller.py
204 205 206 207 208 209 210 211 212 213 214 215 | |
get_springs(s)
Cast SOFA data to python array
Data
Source code in gdsofa/controller/controller.py
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | |
handle_event(event)
General purpose handler
Source code in gdsofa/controller/controller.py
93 94 95 | |
init()
SOFAController init
Source code in gdsofa/controller/controller.py
58 59 60 | |
JsonEncoder
Bases: JSONEncoder
JSON encoder for Path, numpy types (replaces tf.JsonEncoder).
Source code in gdsofa/utils.py
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | |
Link
Implementation of a link between two components
Source code in gdsofa/core/links.py
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 | |
resolve(context=None)
Convert the Link object to a string representing the relative path from the current
context (or the root node by default) to the object self.obj
Source code in gdsofa/core/links.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | |
MultiLink
Bases: List[Link]
Implementation of a multi link, which is a list of single links
Source code in gdsofa/core/links.py
48 49 50 51 52 53 54 55 56 57 | |
MultiLinkExporter
Bases: MultiLink
MultiLink for VTKExporter
Source code in gdsofa/core/links.py
60 61 62 63 64 65 66 | |
Munch
Bases: dict
Dict with attribute access (replaces tf.munchify / treefiles Munch).
Source code in gdsofa/utils.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | |
Node
Implementation of a tree node
A node contains a parent (except the root node) and two containers for its own components and for its child nodes.
Source code in gdsofa/core/node.py
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 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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 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 164 165 166 167 168 169 170 171 172 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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 | |
down2up
property
Generator that browses the node's objects from current node to root
nodes_up2down
property
Generator that browses the scene graph nodes from current node to leaves.
up2down
property
Generator that browses the node's objects from current node to down
add_visual(*visual, color='grey')
Create a simple visual child node
Source code in gdsofa/core/node.py
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | |
find(class_name=None, name=None, callback=None, silent=False)
Find the first object that satisfies Callable(object) == True
Source code in gdsofa/core/node.py
375 376 377 378 379 380 381 382 383 384 385 | |
path_from(node)
Return the relative path between 2 nodes :param node: the starting node
Source code in gdsofa/core/node.py
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 | |
rfind(class_name=None, name=None, callback=None, silent=False)
Similar to find, but from current node to root
Source code in gdsofa/core/node.py
387 388 389 390 391 392 393 394 395 396 397 | |
tree(show_data=True)
Build tree for current node
Source code in gdsofa/core/node.py
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | |
Object
Class representing a SOFA component. The component's data is stored in the kw attribute.
Source code in gdsofa/core/component.py
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 | |
TObject
Bases: Object
Object whose SOFA class is guessed from the python class name
Source code in gdsofa/core/component.py
53 54 55 56 57 58 59 | |
StdRedirect(stream, fname)
Redirect stream to a file (replaces tf.StdRedirect).
Source code in gdsofa/utils.py
147 148 149 150 151 152 153 154 155 156 157 158 159 160 | |
dump_json(path, data, **kwargs)
Write JSON file; creates parent dirs. Wraps gdutils.dump_json.
Source code in gdsofa/utils.py
140 141 142 143 144 | |
dump_path(path)
Create directory (parents, exist_ok) and return resolved path. Replaces tf.dump.
Source code in gdsofa/utils.py
116 117 118 119 120 | |
ensure_ext(fname, ext)
Ensure path has the given extension (e.g. '.json'). Replaces tf.ensure_ext.
Source code in gdsofa/utils.py
100 101 102 103 104 105 106 107 | |
make_string(**kwargs)
Format key=value for logging (replaces tf.make_string).
Source code in gdsofa/utils.py
95 96 97 | |
munchify(obj)
Convert dict (and nested dicts) to Munch.
Source code in gdsofa/utils.py
76 77 78 79 80 81 82 | |
none_default(a, b)
Return a if a is not None else b (replaces tf.none).
Source code in gdsofa/utils.py
85 86 87 | |
path_insert_before(fname, suffix, insert)
E.g. path_insert_before('a/b/foo.json', '.json', '_schema') -> a/b/foo_schema.json.
Source code in gdsofa/utils.py
110 111 112 113 | |
unique_id()
Return a unique string (e.g. for treelib node IDs). Replaces tf.get_string().
Source code in gdsofa/utils.py
90 91 92 | |
Scene and runner
Thin wrapper for SOFA scene root and runner.
RunSofa
Util class to run a scene.
Source code in gdsofa/sofawrap.py
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 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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 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 | |
import_plugins()
Check if plugins have to be imported by browsing the scene graph for components listed in REQUIRED_PLUGINS.
Source code in gdsofa/sofawrap.py
142 143 144 145 146 147 148 149 150 | |
RootNode(**kw)
Create the root node of the scene graph.
Source code in gdsofa/sofawrap.py
21 22 23 24 25 26 27 28 29 | |
Parameters
BaseSOFAParams
Bases: Parameterized
Source code in gdsofa/sofa_parameters.py
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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | |
SOFA loader
Controllers
Core (nodes, components, links)
Utilities
Helpers for gdsofa: Munch, path/iterable utilities, JSON encoding.
- From gdutils (see https://gdutils-a2ef81.gitlabpages.inria.fr/):
load_json,dump_json,Timer, andget_iterable(re-exported asas_iterable). - gdsofa-specific:
dump_jsonwraps gdutils to create parent directories;dump_path,Munch/munchify,JsonEncoder,StdRedirect, and path/string helpers remain here.
JsonEncoder
Bases: JSONEncoder
JSON encoder for Path, numpy types (replaces tf.JsonEncoder).
Source code in gdsofa/utils.py
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | |
Munch
Bases: dict
Dict with attribute access (replaces tf.munchify / treefiles Munch).
Source code in gdsofa/utils.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | |
StdRedirect(stream, fname)
Redirect stream to a file (replaces tf.StdRedirect).
Source code in gdsofa/utils.py
147 148 149 150 151 152 153 154 155 156 157 158 159 160 | |
dump_json(path, data, **kwargs)
Write JSON file; creates parent dirs. Wraps gdutils.dump_json.
Source code in gdsofa/utils.py
140 141 142 143 144 | |
dump_path(path)
Create directory (parents, exist_ok) and return resolved path. Replaces tf.dump.
Source code in gdsofa/utils.py
116 117 118 119 120 | |
ensure_ext(fname, ext)
Ensure path has the given extension (e.g. '.json'). Replaces tf.ensure_ext.
Source code in gdsofa/utils.py
100 101 102 103 104 105 106 107 | |
make_string(**kwargs)
Format key=value for logging (replaces tf.make_string).
Source code in gdsofa/utils.py
95 96 97 | |
munchify(obj)
Convert dict (and nested dicts) to Munch.
Source code in gdsofa/utils.py
76 77 78 79 80 81 82 | |
none_default(a, b)
Return a if a is not None else b (replaces tf.none).
Source code in gdsofa/utils.py
85 86 87 | |
path_insert_before(fname, suffix, insert)
E.g. path_insert_before('a/b/foo.json', '.json', '_schema') -> a/b/foo_schema.json.
Source code in gdsofa/utils.py
110 111 112 113 | |
unique_id()
Return a unique string (e.g. for treelib node IDs). Replaces tf.get_string().
Source code in gdsofa/utils.py
90 91 92 | |