Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix fix icorrect object orientation #62

Conversation

samikachai
Copy link
Contributor

image

Robin Schnider and others added 30 commits December 17, 2024 18:30
* Change to MIT license

Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
* Add release
* change upload version
* create release
* add permissions
* readme again
* Update versions and force semantic version
* Allow workflow only on main
* Update README.md remove BMW elements
* Update package.json
* Add node version & remove @foxglove deps
* Adjust node version
* Add lichtblick/eslint-plugin
---------
Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
Co-authored-by: RobinSchniderBMW <Robin.Schnider@partner.bmw.de>
Co-authored-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
* fix naming "visualizer" -> "converter"

Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
* add keywords

Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
…tblick-Suite#5)

* Integrate ASAM OSI as Dependency for OSI Ground Truth Extension
* Point to asam-osi-types github
* Update asam-osi-types npm package url
* Adjusts to comply with asam-osi-types v3.7.0 upgrade
* Logic adjusted to work with v3.7.0 SensorView trace files
---------

Co-authored-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
* attempt fix workflow

Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
* fix workflow

Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
* dump github var

Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
Signed-off-by: jdsika <carlo.van-driesten@bmw.de>
Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
Signed-off-by: Acemir Sousa Mendes <acemir.sousamendes@capgemini.com>
Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
)

* Automate changelog file update on release using github actions workflows
* Add release instructions to README.me
* Reset changelog.md
* Add pre-commit hook fo Conventional Commits

doc(example-data): Create README.md for example data (Lichtblick-Suite#20)

* Create README.md for example data
* delete outdated example
* add OpenPASS as optional simulator
---------
Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>

ci(release): remove trigger on PRs from workflow (Lichtblick-Suite#21)

Ci(fix): release pipeline (Lichtblick-Suite#23)

* ci(release): swap direct push on main with a PR

* ci(release): add PAT to main push operation

Update README.md

* add requirement to sign a tag to readme

Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>

ci(release): attach changelog to release instead of committing to main (Lichtblick-Suite#24)

* ci(release): attach changelog to release instead of committing to main
* ci(release): add PR creation job

fix(ci): release pipeline fix (Lichtblick-Suite#25)

* update to node 18
* remove create pull request for now
---------

Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
Co-authored-by: Carlo van Driesten <carlo.van-driesten@bmw.de>

ci: add initial commit history to workflow|bump version to 0.0.2 (Lichtblick-Suite#26)

ci(release): update workflow (Lichtblick-Suite#27)

Ci  release pipeline fix (Lichtblick-Suite#28)

* ci(release): use env variables instead of set-output

* ci(release): update release

Ci  release pipeline fix (Lichtblick-Suite#29)

* ci(release): use env variables instead of set-output

* ci(release): update release

* ci(release): add line seperations to initial commit history in changelog

Ci  release pipeline fix (Lichtblick-Suite#30)

* ci(release): use env variables instead of set-output

* ci(release): update release

* ci(release): fix pipeline workflow

ci: adapt pipeline workflow (Lichtblick-Suite#31)

ci(release): add initial commit history fetch job to pipeline (Lichtblick-Suite#32)

Ci  create pr to update changelog file (Lichtblick-Suite#33)

* ci(release): add PR creation step to update changelog file

* chore(package): bump version to v0.0.3

ci(release): update PR commit message (Lichtblick-Suite#34)

ci(release): remove uppercase start from commit message (Lichtblick-Suite#35)

ci(release): add PAT to PR creation step (Lichtblick-Suite#36)

ci(release): handle staging with create-pull-request action (Lichtblick-Suite#40)

ci(release): add commit step to update-changelog branch (Lichtblick-Suite#42)

ci(release): add branch pull action before commit (Lichtblick-Suite#43)

ci(release): force changes in changelog commit (Lichtblick-Suite#44)

ci(release): specifiy pull reconcilation (Lichtblick-Suite#45)

ci(release): add changes stashing before and after pull (Lichtblick-Suite#46)

Ci  create pr to update changelog file (Lichtblick-Suite#47)

* ci(release): update workflow

* ci(release): add delete branch option

ci(release): update workflow (Lichtblick-Suite#49)

ci(release): update workflow (Lichtblick-Suite#50)

ci(release): update workflow (Lichtblick-Suite#52)

ci(release): update workflow (Lichtblick-Suite#53)

ci(release): split jobs (Lichtblick-Suite#54)

ci(release): preserve state across jobs (Lichtblick-Suite#56)

ci(release): update workflow (Lichtblick-Suite#57)

ci(release): update workflow (#1)

ci(release): update pipeline

ci(release): update pipeline
@jdsika
Copy link
Contributor

jdsika commented Jan 22, 2025

I think it is this:

export function eulerToQuaternion(roll: number, pitch: number, yaw: number): Quaternion {
  const sr = Math.sin(roll * 0.5);
  const cr = Math.cos(roll * 0.5);
  const sp = Math.sin(pitch * 0.5);
  const cp = Math.cos(pitch * 0.5);
  const sy = Math.sin(yaw * 0.5);
  const cy = Math.cos(yaw * 0.5);

  const w = cr * cp * cy - sr * sp * sy;
  const x = cr * sp * cy + sr * cp * cy;
  const y = cr * sp * cy - sr * cp * sy;
  const z = cr * cp * sy + sr * sp * cy;

  return { x, y, z, w };
}

@jdsika jdsika closed this Jan 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants