< Summary

Class:Coordinates3
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Utils/Coordinates.cs
Covered lines:12
Uncovered lines:6
Coverable lines:18
Total lines:58
Line coverage:66.6% (12 of 18)
Covered branches:0
Total branches:0
Covered methods:2
Total methods:4
Method coverage:50% (2 of 4)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
ConvertCartesianToSpherical(...)0%110100%
ConvertCartesianToSpherical(...)0%2100%
ConvertSphericalToCartesian(...)0%110100%
ConvertSphericalToCartesian(...)0%2100%

File(s)

/github/workspace/Assets/Scripts/Utils/Coordinates.cs

#LineLine coverage
 1using UnityEngine;
 2
 3// Utility functions for 2D coordinates.
 4// In Cartesian coordinates, the x-axis points right, and the y-axis points up. The coordinates are
 5// given by (x, y).
 6// In polar coordinates, the angle is measured in degrees from the x-axis counterclockwise to the
 7// y-axis. The coordinates are given by (r, theta).
 8public class Coordinates2 {
 9  public static Vector2 ConvertCartesianToPolar(in Vector2 cartesian) {
 10    float r = cartesian.magnitude;
 11    float theta = Mathf.Atan2(cartesian.y, cartesian.x) * Mathf.Rad2Deg;
 12    return new Vector2(r, theta);
 13  }
 14  public static Vector2 ConvertCartesianToPolar(float x, float y) {
 15    return ConvertCartesianToPolar(new Vector2(x, y));
 16  }
 17
 18  public static Vector2 ConvertPolarToCartesian(in Vector2 polar) {
 19    float x = polar.x * Mathf.Cos(polar.y * Mathf.Deg2Rad);
 20    float y = polar.x * Mathf.Sin(polar.y * Mathf.Deg2Rad);
 21    return new Vector2(x, y);
 22  }
 23  public static Vector2 ConvertPolarToCartesian(float r, float theta) {
 24    return ConvertPolarToCartesian(new Vector2(r, theta));
 25  }
 26}
 27
 28// Utility functions for 3D coordinates.
 29// In Cartesian coordinates, the x-axis points right, the y-axis points up, and the z-axis points
 30// forward. The coordinates are given by (x, y, z).
 31// In spherical coordinates, the azimuth is measured in degrees from the x-axis clockwise to the
 32// z-axis, and elevation is measured in degrees from the x-z plane up to the y-axis. The coordinates
 33// are given by (r, azimuth, elevation).
 34public class Coordinates3 {
 235  public static Vector3 ConvertCartesianToSpherical(in Vector3 cartesian) {
 236    float r = cartesian.magnitude;
 237    float azimuth = Mathf.Atan2(cartesian.x, cartesian.z) * Mathf.Rad2Deg;
 238    float elevation = Mathf.Atan(cartesian.y / Mathf.Sqrt(cartesian.x * cartesian.x +
 39                                                          cartesian.z * cartesian.z)) *
 40                      Mathf.Rad2Deg;
 241    return new Vector3(r, azimuth, elevation);
 242  }
 043  public static Vector3 ConvertCartesianToSpherical(float x, float y, float z) {
 044    return ConvertCartesianToSpherical(new Vector3(x, y, z));
 045  }
 46
 247  public static Vector3 ConvertSphericalToCartesian(in Vector3 spherical) {
 248    float y = spherical.x * Mathf.Sin(spherical.z * Mathf.Deg2Rad);
 249    float x = spherical.x * Mathf.Cos(spherical.z * Mathf.Deg2Rad) *
 50              Mathf.Sin(spherical.y * Mathf.Deg2Rad);
 251    float z = spherical.x * Mathf.Cos(spherical.z * Mathf.Deg2Rad) *
 52              Mathf.Cos(spherical.y * Mathf.Deg2Rad);
 253    return new Vector3(x, y, z);
 254  }
 055  public static Vector3 ConvertSphericalToCartesian(float r, float azimuth, float elevation) {
 056    return ConvertSphericalToCartesian(new Vector3(r, azimuth, elevation));
 057  }
 58}