Skip to content

Commit

Permalink
remove commas to match targets tab
Browse files Browse the repository at this point in the history
  • Loading branch information
srimanachanta committed Oct 19, 2023
1 parent 8bc0e84 commit f9bbd0a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions photon-client/src/components/settings/ApriltagControlCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const quatToEuler = (quat: Quaternion): Euler => {
};
// Convert from radians to degrees.
const degrees = (radians: number): number => (radians * 180) / Math.PI;
const degrees = (radians: number): number => radians * (180.0 / Math.PI);
</script>

<template>
Expand All @@ -25,12 +25,12 @@ const degrees = (radians: number): number => (radians * 180) / Math.PI;
<thead style="font-size: 1.25rem">
<tr>
<th class="text-center">ID</th>
<th class="text-center">X, meters</th>
<th class="text-center">Y, meters</th>
<th class="text-center">Z, meters</th>
<th class="text-center">θ<sub>x</sub> angle, &deg;</th>
<th class="text-center">θ<sub>y</sub> angle, &deg;</th>
<th class="text-center">θ<sub>z</sub> angle, &deg;</th>
<th class="text-center">X meters</th>
<th class="text-center">Y meters</th>
<th class="text-center">Z meters</th>
<th class="text-center">θ<sub>x</sub>&deg;</th>
<th class="text-center">θ<sub>y</sub>&deg;</th>
<th class="text-center">θ<sub>z</sub>&deg;</th>
</tr>
</thead>
<tbody>
Expand Down

0 comments on commit f9bbd0a

Please sign in to comment.