To enable auto-completion and hints in code editors such as VScode, create a `*.pyi` file. This feature is compatible with `python 3.9` and later versions.
2024-07-29 16:34:19 +02:00
4 changed files with 5707 additions and 9 deletions
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.
- **Parameters:**
- `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.
- **Parameters:**
- `in_vector` (_[carla.Vector3D](#carla.Vector3D)_) - Vector to which the transformation will be applied.
- `in_point` (_[carla.Vector3D](#carla.Vector3D)_) - Vector to which the transformation will be applied.
Location in the space to which the transformation will be applied.
doc:>
Translates a 3D point from local to global coordinates using the current transformation as frame of reference.
Translates a 3D point in place from local to global coordinates using the current transformation as frame of reference.
# --------------------------------------
- def_name:inverse_transform
params:
- param_name:in_point
type:carla.Vector3D
doc:>
Location in the space to which the inverse transformation will be applied.
doc:>
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.
# --------------------------------------
- def_name:transform_vector
params:
- param_name:in_vector
- param_name:in_point
type:carla.Vector3D
doc:>
Vector to which the transformation will be applied.
doc:>
Rotates a vector using the current transformation as frame of reference, without applying translation. Use this to transform, for example, a velocity.
Rotates a vector in place using the current transformation as frame of reference, without applying translation. Use this to transform, for example, a velocity.