Help calculating a point in 2d space on a rotating right angle triangle
$begingroup$
I am trying to solve for a point on a triangle that rotates around a fixed point. For ease of calculation this point is at X: 0 Y: 0
The length and width of the triangle are always fixed, the only thing that changes is the rotation angle. How can I solve for X: ??? and Y: ??? taking into account the rotation angle?
I am trying to place a 2d rendered object in Java so I need to break the formula down to it's base elements so I can put it into code and have the formula spit out X and Y coordinates
The known variables are all listed in the pictures. The angle of the triangle, the length & width. Anything else that is needed to find the ??? must be calculated first I guess.
Please don't just link wiki pages. I have read them. I don't understand them. Hence why I am asking for help walking through the solution.
Thank you!
geometry trigonometry
$endgroup$
add a comment |
$begingroup$
I am trying to solve for a point on a triangle that rotates around a fixed point. For ease of calculation this point is at X: 0 Y: 0
The length and width of the triangle are always fixed, the only thing that changes is the rotation angle. How can I solve for X: ??? and Y: ??? taking into account the rotation angle?
I am trying to place a 2d rendered object in Java so I need to break the formula down to it's base elements so I can put it into code and have the formula spit out X and Y coordinates
The known variables are all listed in the pictures. The angle of the triangle, the length & width. Anything else that is needed to find the ??? must be calculated first I guess.
Please don't just link wiki pages. I have read them. I don't understand them. Hence why I am asking for help walking through the solution.
Thank you!
geometry trigonometry
$endgroup$
$begingroup$
Which parameters do you want to give your triangle? For example, do you want to give it the current angle, two sides and the enclosed angle between those two sides?
$endgroup$
– Imago
Dec 21 '15 at 13:58
$begingroup$
Multiply the coordinates with a rotation matrix en.m.wikipedia.org/wiki/Rotation_matrix
$endgroup$
– David Quinn
Dec 21 '15 at 14:25
add a comment |
$begingroup$
I am trying to solve for a point on a triangle that rotates around a fixed point. For ease of calculation this point is at X: 0 Y: 0
The length and width of the triangle are always fixed, the only thing that changes is the rotation angle. How can I solve for X: ??? and Y: ??? taking into account the rotation angle?
I am trying to place a 2d rendered object in Java so I need to break the formula down to it's base elements so I can put it into code and have the formula spit out X and Y coordinates
The known variables are all listed in the pictures. The angle of the triangle, the length & width. Anything else that is needed to find the ??? must be calculated first I guess.
Please don't just link wiki pages. I have read them. I don't understand them. Hence why I am asking for help walking through the solution.
Thank you!
geometry trigonometry
$endgroup$
I am trying to solve for a point on a triangle that rotates around a fixed point. For ease of calculation this point is at X: 0 Y: 0
The length and width of the triangle are always fixed, the only thing that changes is the rotation angle. How can I solve for X: ??? and Y: ??? taking into account the rotation angle?
I am trying to place a 2d rendered object in Java so I need to break the formula down to it's base elements so I can put it into code and have the formula spit out X and Y coordinates
The known variables are all listed in the pictures. The angle of the triangle, the length & width. Anything else that is needed to find the ??? must be calculated first I guess.
Please don't just link wiki pages. I have read them. I don't understand them. Hence why I am asking for help walking through the solution.
Thank you!
geometry trigonometry
geometry trigonometry
edited Dec 21 '15 at 15:57
Community♦
1
1
asked Dec 21 '15 at 13:48
Gummby8Gummby8
61
61
$begingroup$
Which parameters do you want to give your triangle? For example, do you want to give it the current angle, two sides and the enclosed angle between those two sides?
$endgroup$
– Imago
Dec 21 '15 at 13:58
$begingroup$
Multiply the coordinates with a rotation matrix en.m.wikipedia.org/wiki/Rotation_matrix
$endgroup$
– David Quinn
Dec 21 '15 at 14:25
add a comment |
$begingroup$
Which parameters do you want to give your triangle? For example, do you want to give it the current angle, two sides and the enclosed angle between those two sides?
$endgroup$
– Imago
Dec 21 '15 at 13:58
$begingroup$
Multiply the coordinates with a rotation matrix en.m.wikipedia.org/wiki/Rotation_matrix
$endgroup$
– David Quinn
Dec 21 '15 at 14:25
$begingroup$
Which parameters do you want to give your triangle? For example, do you want to give it the current angle, two sides and the enclosed angle between those two sides?
$endgroup$
– Imago
Dec 21 '15 at 13:58
$begingroup$
Which parameters do you want to give your triangle? For example, do you want to give it the current angle, two sides and the enclosed angle between those two sides?
$endgroup$
– Imago
Dec 21 '15 at 13:58
$begingroup$
Multiply the coordinates with a rotation matrix en.m.wikipedia.org/wiki/Rotation_matrix
$endgroup$
– David Quinn
Dec 21 '15 at 14:25
$begingroup$
Multiply the coordinates with a rotation matrix en.m.wikipedia.org/wiki/Rotation_matrix
$endgroup$
– David Quinn
Dec 21 '15 at 14:25
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
Imagine the hypotenuse of your triangle is the radius of a circle for which the length can be calculated with the Pythagorean theorem:
$$
H = sqrt{L^2 + W^2} \
$$
Then, instead of calculating the angle between the negative $y$-axis and the hypotenuse as drawn, imagine the initial angle of your hypotenuse is the angle between the $x$-axis and the hypotenuse which can be calculated with the $tan$ function and its inverse $arctan$ function:
$$
tan theta = frac{textrm{opposite}}{textrm{adjacent}} = frac{L}{W} \
theta = arctan frac{L}{W} \
$$
Finally, the coordinates can be calculated by multiplying the hypotenuse ($H$) with the appropriate trigonometric function ($sin$ or $cos$) applied to the complete angle ($theta + Angle$) which can then be simplified:
$$
X = H cos(theta + Angle) = W cos(Angle) - L sin(Angle) \
Y = H sin(theta + Angle) = L cos(Angle) + W sin(Angle) \
$$
Let's try these equations with the values from your first triangle where $Angle$ is $0$:
$$
X = 3 cos(0) - (-5) sin(0) = 3 \
Y = (-5) cos(0) + 3 sin(0) = -5 \
$$
Now let's try again with the values from your second triangle where $Angle$ is $35^circ$ converted to radians:
$$
X = 3 cos(frac{35 pi}{180}) - (-5) sin(frac{35 pi}{180}) approx 5.33 \
Y = (-5) cos(frac{35 pi}{180}) + 3 sin(frac{35 pi}{180}) approx -2.38 \
$$
$endgroup$
add a comment |
$begingroup$
Cr3 is correct but I found a bit smaller way to do it from a different help forums. Thank you all
x′= Width * cos(Angle) - Length * sin(Angle)
y′= Width * sin(Angle) + Length * cos(Angle)
x′=3cos(35)+5sin(35)≈5.33
y′=3sin(35)−5cos(35)≈−2.38
$endgroup$
$begingroup$
If it looks like your answer is a bit smaller because it uses degrees ($35^circ$) whereas my answer uses radians ($frac{35pi}{180}$), please note that theMath.cos
function in Java expects an angle parameter in radians.
$endgroup$
– cr3
Dec 23 '15 at 19:19
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f1584447%2fhelp-calculating-a-point-in-2d-space-on-a-rotating-right-angle-triangle%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
Imagine the hypotenuse of your triangle is the radius of a circle for which the length can be calculated with the Pythagorean theorem:
$$
H = sqrt{L^2 + W^2} \
$$
Then, instead of calculating the angle between the negative $y$-axis and the hypotenuse as drawn, imagine the initial angle of your hypotenuse is the angle between the $x$-axis and the hypotenuse which can be calculated with the $tan$ function and its inverse $arctan$ function:
$$
tan theta = frac{textrm{opposite}}{textrm{adjacent}} = frac{L}{W} \
theta = arctan frac{L}{W} \
$$
Finally, the coordinates can be calculated by multiplying the hypotenuse ($H$) with the appropriate trigonometric function ($sin$ or $cos$) applied to the complete angle ($theta + Angle$) which can then be simplified:
$$
X = H cos(theta + Angle) = W cos(Angle) - L sin(Angle) \
Y = H sin(theta + Angle) = L cos(Angle) + W sin(Angle) \
$$
Let's try these equations with the values from your first triangle where $Angle$ is $0$:
$$
X = 3 cos(0) - (-5) sin(0) = 3 \
Y = (-5) cos(0) + 3 sin(0) = -5 \
$$
Now let's try again with the values from your second triangle where $Angle$ is $35^circ$ converted to radians:
$$
X = 3 cos(frac{35 pi}{180}) - (-5) sin(frac{35 pi}{180}) approx 5.33 \
Y = (-5) cos(frac{35 pi}{180}) + 3 sin(frac{35 pi}{180}) approx -2.38 \
$$
$endgroup$
add a comment |
$begingroup$
Imagine the hypotenuse of your triangle is the radius of a circle for which the length can be calculated with the Pythagorean theorem:
$$
H = sqrt{L^2 + W^2} \
$$
Then, instead of calculating the angle between the negative $y$-axis and the hypotenuse as drawn, imagine the initial angle of your hypotenuse is the angle between the $x$-axis and the hypotenuse which can be calculated with the $tan$ function and its inverse $arctan$ function:
$$
tan theta = frac{textrm{opposite}}{textrm{adjacent}} = frac{L}{W} \
theta = arctan frac{L}{W} \
$$
Finally, the coordinates can be calculated by multiplying the hypotenuse ($H$) with the appropriate trigonometric function ($sin$ or $cos$) applied to the complete angle ($theta + Angle$) which can then be simplified:
$$
X = H cos(theta + Angle) = W cos(Angle) - L sin(Angle) \
Y = H sin(theta + Angle) = L cos(Angle) + W sin(Angle) \
$$
Let's try these equations with the values from your first triangle where $Angle$ is $0$:
$$
X = 3 cos(0) - (-5) sin(0) = 3 \
Y = (-5) cos(0) + 3 sin(0) = -5 \
$$
Now let's try again with the values from your second triangle where $Angle$ is $35^circ$ converted to radians:
$$
X = 3 cos(frac{35 pi}{180}) - (-5) sin(frac{35 pi}{180}) approx 5.33 \
Y = (-5) cos(frac{35 pi}{180}) + 3 sin(frac{35 pi}{180}) approx -2.38 \
$$
$endgroup$
add a comment |
$begingroup$
Imagine the hypotenuse of your triangle is the radius of a circle for which the length can be calculated with the Pythagorean theorem:
$$
H = sqrt{L^2 + W^2} \
$$
Then, instead of calculating the angle between the negative $y$-axis and the hypotenuse as drawn, imagine the initial angle of your hypotenuse is the angle between the $x$-axis and the hypotenuse which can be calculated with the $tan$ function and its inverse $arctan$ function:
$$
tan theta = frac{textrm{opposite}}{textrm{adjacent}} = frac{L}{W} \
theta = arctan frac{L}{W} \
$$
Finally, the coordinates can be calculated by multiplying the hypotenuse ($H$) with the appropriate trigonometric function ($sin$ or $cos$) applied to the complete angle ($theta + Angle$) which can then be simplified:
$$
X = H cos(theta + Angle) = W cos(Angle) - L sin(Angle) \
Y = H sin(theta + Angle) = L cos(Angle) + W sin(Angle) \
$$
Let's try these equations with the values from your first triangle where $Angle$ is $0$:
$$
X = 3 cos(0) - (-5) sin(0) = 3 \
Y = (-5) cos(0) + 3 sin(0) = -5 \
$$
Now let's try again with the values from your second triangle where $Angle$ is $35^circ$ converted to radians:
$$
X = 3 cos(frac{35 pi}{180}) - (-5) sin(frac{35 pi}{180}) approx 5.33 \
Y = (-5) cos(frac{35 pi}{180}) + 3 sin(frac{35 pi}{180}) approx -2.38 \
$$
$endgroup$
Imagine the hypotenuse of your triangle is the radius of a circle for which the length can be calculated with the Pythagorean theorem:
$$
H = sqrt{L^2 + W^2} \
$$
Then, instead of calculating the angle between the negative $y$-axis and the hypotenuse as drawn, imagine the initial angle of your hypotenuse is the angle between the $x$-axis and the hypotenuse which can be calculated with the $tan$ function and its inverse $arctan$ function:
$$
tan theta = frac{textrm{opposite}}{textrm{adjacent}} = frac{L}{W} \
theta = arctan frac{L}{W} \
$$
Finally, the coordinates can be calculated by multiplying the hypotenuse ($H$) with the appropriate trigonometric function ($sin$ or $cos$) applied to the complete angle ($theta + Angle$) which can then be simplified:
$$
X = H cos(theta + Angle) = W cos(Angle) - L sin(Angle) \
Y = H sin(theta + Angle) = L cos(Angle) + W sin(Angle) \
$$
Let's try these equations with the values from your first triangle where $Angle$ is $0$:
$$
X = 3 cos(0) - (-5) sin(0) = 3 \
Y = (-5) cos(0) + 3 sin(0) = -5 \
$$
Now let's try again with the values from your second triangle where $Angle$ is $35^circ$ converted to radians:
$$
X = 3 cos(frac{35 pi}{180}) - (-5) sin(frac{35 pi}{180}) approx 5.33 \
Y = (-5) cos(frac{35 pi}{180}) + 3 sin(frac{35 pi}{180}) approx -2.38 \
$$
edited Dec 22 '15 at 0:16
answered Dec 21 '15 at 23:39
cr3cr3
1,345511
1,345511
add a comment |
add a comment |
$begingroup$
Cr3 is correct but I found a bit smaller way to do it from a different help forums. Thank you all
x′= Width * cos(Angle) - Length * sin(Angle)
y′= Width * sin(Angle) + Length * cos(Angle)
x′=3cos(35)+5sin(35)≈5.33
y′=3sin(35)−5cos(35)≈−2.38
$endgroup$
$begingroup$
If it looks like your answer is a bit smaller because it uses degrees ($35^circ$) whereas my answer uses radians ($frac{35pi}{180}$), please note that theMath.cos
function in Java expects an angle parameter in radians.
$endgroup$
– cr3
Dec 23 '15 at 19:19
add a comment |
$begingroup$
Cr3 is correct but I found a bit smaller way to do it from a different help forums. Thank you all
x′= Width * cos(Angle) - Length * sin(Angle)
y′= Width * sin(Angle) + Length * cos(Angle)
x′=3cos(35)+5sin(35)≈5.33
y′=3sin(35)−5cos(35)≈−2.38
$endgroup$
$begingroup$
If it looks like your answer is a bit smaller because it uses degrees ($35^circ$) whereas my answer uses radians ($frac{35pi}{180}$), please note that theMath.cos
function in Java expects an angle parameter in radians.
$endgroup$
– cr3
Dec 23 '15 at 19:19
add a comment |
$begingroup$
Cr3 is correct but I found a bit smaller way to do it from a different help forums. Thank you all
x′= Width * cos(Angle) - Length * sin(Angle)
y′= Width * sin(Angle) + Length * cos(Angle)
x′=3cos(35)+5sin(35)≈5.33
y′=3sin(35)−5cos(35)≈−2.38
$endgroup$
Cr3 is correct but I found a bit smaller way to do it from a different help forums. Thank you all
x′= Width * cos(Angle) - Length * sin(Angle)
y′= Width * sin(Angle) + Length * cos(Angle)
x′=3cos(35)+5sin(35)≈5.33
y′=3sin(35)−5cos(35)≈−2.38
answered Dec 22 '15 at 17:18
Gummby8Gummby8
31
31
$begingroup$
If it looks like your answer is a bit smaller because it uses degrees ($35^circ$) whereas my answer uses radians ($frac{35pi}{180}$), please note that theMath.cos
function in Java expects an angle parameter in radians.
$endgroup$
– cr3
Dec 23 '15 at 19:19
add a comment |
$begingroup$
If it looks like your answer is a bit smaller because it uses degrees ($35^circ$) whereas my answer uses radians ($frac{35pi}{180}$), please note that theMath.cos
function in Java expects an angle parameter in radians.
$endgroup$
– cr3
Dec 23 '15 at 19:19
$begingroup$
If it looks like your answer is a bit smaller because it uses degrees ($35^circ$) whereas my answer uses radians ($frac{35pi}{180}$), please note that the
Math.cos
function in Java expects an angle parameter in radians.$endgroup$
– cr3
Dec 23 '15 at 19:19
$begingroup$
If it looks like your answer is a bit smaller because it uses degrees ($35^circ$) whereas my answer uses radians ($frac{35pi}{180}$), please note that the
Math.cos
function in Java expects an angle parameter in radians.$endgroup$
– cr3
Dec 23 '15 at 19:19
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f1584447%2fhelp-calculating-a-point-in-2d-space-on-a-rotating-right-angle-triangle%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
$begingroup$
Which parameters do you want to give your triangle? For example, do you want to give it the current angle, two sides and the enclosed angle between those two sides?
$endgroup$
– Imago
Dec 21 '15 at 13:58
$begingroup$
Multiply the coordinates with a rotation matrix en.m.wikipedia.org/wiki/Rotation_matrix
$endgroup$
– David Quinn
Dec 21 '15 at 14:25