Customise Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorised as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyse the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customised advertisements based on the pages you visited previously and to analyse the effectiveness of the ad campaigns.

No cookies to display.

[ad_1]

I’m making an attempt to create a Radar/Minimap for the F1 2021 sport in C#/WPF. Here’s a picture of what I’m making an attempt to copy

radar

Within the picture, the white automotive (my automotive) will at all times face the path it’s going. The blue automotive (different play automotive) will face relative to my path.

I’m given the next info

public float m_worldPositionX;           // World house X place
public float m_worldPositionY;           // World house Y place
public float m_worldPositionZ;           // World house Z place
public float m_worldVelocityX;           // Velocity in world house X
public float m_worldVelocityY;           // Velocity in world house Y
public float m_worldVelocityZ;           // Velocity in world house Z
public quick m_worldForwardDirX;         // World house ahead X path (normalised)
public quick m_worldForwardDirY;         // World house ahead Y path (normalised)
public quick m_worldForwardDirZ;         // World house ahead Z path (normalised)
public quick m_worldRightDirX;           // World house proper X path (normalised)
public quick m_worldRightDirY;           // World house proper Y path (normalised)
public quick m_worldRightDirZ;           // World house proper Z path (normalised)
public float m_gForceLateral;            // Lateral G-Power element
public float m_gForceLongitudinal;       // Longitudinal G-Power element
public float m_gForceVertical;           // Vertical G-Power element
public float m_yaw;                      // Yaw angle in radians
public float m_pitch;                    // Pitch angle in radians
public float m_roll;                     // Roll angle in radians

I’m having bother understanding the idea of worldForwardDir and worldRightDir, and the way they differ.

Moreover, I’m questioning whether it is even attainable in any respect given the data above that I can rework the worldPosition coordinates into one thing usable by a 2D canvas.

[ad_2]

Leave a Reply

Your email address will not be published. Required fields are marked *