You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Applies the inverse of `transform` by translating a 3D point in place from global to local coordinates using the current transformation as frame of reference.
2799
+
- **Parameters:**
2800
+
- `in_point` (_[carla.Vector3D](#carla.Vector3D)_) - Location in the space to which the inverse transformation will be applied.
Rotates a vector in place using the current transformation as frame of reference, without applying translation. Use this to transform, for example, a velocity.
2803
2807
- **Parameters:**
2804
-
- `in_vector` (_[carla.Vector3D](#carla.Vector3D)_) - Vector to which the transformation will be applied.
2808
+
- `in_point` (_[carla.Vector3D](#carla.Vector3D)_) - Vector to which the transformation will be applied.
Copy file name to clipboardExpand all lines: PythonAPI/docs/geom.yml
+13-4Lines changed: 13 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -438,20 +438,29 @@
438
438
- def_name: transform
439
439
params:
440
440
- param_name: in_point
441
-
type: carla.Location
441
+
type: carla.Vector3D
442
442
doc: >
443
443
Location in the space to which the transformation will be applied.
444
444
doc: >
445
-
Translates a 3D point from local to global coordinates using the current transformation as frame of reference.
445
+
Translates a 3D point in place from local to global coordinates using the current transformation as frame of reference.
446
+
# --------------------------------------
447
+
- def_name: inverse_transform
448
+
params:
449
+
- param_name: in_point
450
+
type: carla.Vector3D
451
+
doc: >
452
+
Location in the space to which the inverse transformation will be applied.
453
+
doc: >
454
+
Applies the inverse of `transform` by translating a 3D point in place from global to local coordinates using the current transformation as frame of reference.
446
455
# --------------------------------------
447
456
- def_name: transform_vector
448
457
params:
449
-
- param_name: in_vector
458
+
- param_name: in_point
450
459
type: carla.Vector3D
451
460
doc: >
452
461
Vector to which the transformation will be applied.
453
462
doc: >
454
-
Rotates a vector using the current transformation as frame of reference, without applying translation. Use this to transform, for example, a velocity.
463
+
Rotates a vector in place using the current transformation as frame of reference, without applying translation. Use this to transform, for example, a velocity.
0 commit comments