How to find a certain coordinate on path relative to another path?How to find the centre of the area between two objects in IllustratorImport vector data into illustratorDrawing a line from one coordinate to another?Automatically transform curves to polygons in AI CCExtending a line segment to fit into a bounding boxhow to make two same shapes connected in IllustratorHow to align an object relative to another object?Adobe Illustrator generates SVG with rect instead of polygonHow to (almost) perfectly align a DWG to an SVG?Illustrator: How to connect a path into another path
Why must Chinese maps be obfuscated?
SFDX - Create Objects with Custom Properties
How can I get rid of an unhelpful parallel branch when unpivoting a single row?
How much of a wave function must reside inside event horizon for it to be consumed by the black hole?
Can I criticise the more senior developers around me for not writing clean code?
Who's the random kid standing in the gathering at the end?
How bug prioritization works in agile projects vs non agile
How can I wire a 9-position switch so that each position turns on one more LED than the one before?
What is the term for a person whose job is to place products on shelves in stores?
I preordered a game on my Xbox while on the home screen of my friend's account. Which of us owns the game?
What was Apollo 13's "Little Jolt" after MECO?
Drawing a german abacus as in the books of Adam Ries
A strange hotel
Is Diceware more secure than a long passphrase?
All ASCII characters with a given bit count
Creating a chemical industry from a medieval tech level without petroleum
Island of Knights, Knaves and Spies
Work requires me to come in early to start computer but wont let me clock in to get paid for it
Why do real positive eigenvalues result in an unstable system? What about eigenvalues between 0 and 1? or 1?
What is the most expensive material in the world that could be used to create Pun-Pun's lute?
Are there moral objections to a life motivated purely by money? How to sway a person from this lifestyle?
Is there metaphorical meaning of "aus der Haft entlassen"?
Find the identical rows in a matrix
How to not starve gigantic beasts
How to find a certain coordinate on path relative to another path?
How to find the centre of the area between two objects in IllustratorImport vector data into illustratorDrawing a line from one coordinate to another?Automatically transform curves to polygons in AI CCExtending a line segment to fit into a bounding boxhow to make two same shapes connected in IllustratorHow to align an object relative to another object?Adobe Illustrator generates SVG with rect instead of polygonHow to (almost) perfectly align a DWG to an SVG?Illustrator: How to connect a path into another path
I am learning AI and SVG animation. I got the SVG from flaticon. I would like to rotate the pointer around a point and make it look like the gauge is actually working. To achieve this, I need to find the coordinates on the indicator where the bases's midpoint is.
So.:
- I am rotating the pointer
- I know the base's midpoint
- Want to know which (
x
,y
) is the base's midpoint on the indicator (x'
,y'
)
Finding the midpoint on the base is not hard, but how can I translate the coordinate to the pointer? (I will actually need to transform the indicator's coordinate to an x'
and y'
percentage afterwards to be able to make it responsive).
I guess I would need to figure out points a lot of times later, so I would like to be able to find such points fast.
Edit:
I actually want to rotate the pointer in my animation (JavaScript). I can reference the pointer using the path's id, but to apply the transformation, I need a transformation origin. Which I cannot measure.
adobe-illustrator
New contributor
add a comment |
I am learning AI and SVG animation. I got the SVG from flaticon. I would like to rotate the pointer around a point and make it look like the gauge is actually working. To achieve this, I need to find the coordinates on the indicator where the bases's midpoint is.
So.:
- I am rotating the pointer
- I know the base's midpoint
- Want to know which (
x
,y
) is the base's midpoint on the indicator (x'
,y'
)
Finding the midpoint on the base is not hard, but how can I translate the coordinate to the pointer? (I will actually need to transform the indicator's coordinate to an x'
and y'
percentage afterwards to be able to make it responsive).
I guess I would need to figure out points a lot of times later, so I would like to be able to find such points fast.
Edit:
I actually want to rotate the pointer in my animation (JavaScript). I can reference the pointer using the path's id, but to apply the transformation, I need a transformation origin. Which I cannot measure.
adobe-illustrator
New contributor
add a comment |
I am learning AI and SVG animation. I got the SVG from flaticon. I would like to rotate the pointer around a point and make it look like the gauge is actually working. To achieve this, I need to find the coordinates on the indicator where the bases's midpoint is.
So.:
- I am rotating the pointer
- I know the base's midpoint
- Want to know which (
x
,y
) is the base's midpoint on the indicator (x'
,y'
)
Finding the midpoint on the base is not hard, but how can I translate the coordinate to the pointer? (I will actually need to transform the indicator's coordinate to an x'
and y'
percentage afterwards to be able to make it responsive).
I guess I would need to figure out points a lot of times later, so I would like to be able to find such points fast.
Edit:
I actually want to rotate the pointer in my animation (JavaScript). I can reference the pointer using the path's id, but to apply the transformation, I need a transformation origin. Which I cannot measure.
adobe-illustrator
New contributor
I am learning AI and SVG animation. I got the SVG from flaticon. I would like to rotate the pointer around a point and make it look like the gauge is actually working. To achieve this, I need to find the coordinates on the indicator where the bases's midpoint is.
So.:
- I am rotating the pointer
- I know the base's midpoint
- Want to know which (
x
,y
) is the base's midpoint on the indicator (x'
,y'
)
Finding the midpoint on the base is not hard, but how can I translate the coordinate to the pointer? (I will actually need to transform the indicator's coordinate to an x'
and y'
percentage afterwards to be able to make it responsive).
I guess I would need to figure out points a lot of times later, so I would like to be able to find such points fast.
Edit:
I actually want to rotate the pointer in my animation (JavaScript). I can reference the pointer using the path's id, but to apply the transformation, I need a transformation origin. Which I cannot measure.
adobe-illustrator
adobe-illustrator
New contributor
New contributor
edited Apr 21 at 9:04
appl3r
New contributor
asked Apr 21 at 8:44
appl3rappl3r
1134
1134
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
With Illustrator you don't need any coordinate, if we had to do illustrations based on coordinates it would be a madness ;-)
- Select the circle and the pointer
- Prss R to activate the Rotation Tool
- Pres Cmd + Y Mac or Ctrl + Y Win to activate the Outline View
- Click the circle center once to define the rotation center
- Click the pointer top point and rotate
To see the coordinates points:
- Pres Cmd + U Mac or Ctrl + U Win to activate the Smart guides
- Put the mouse over the circle center to see
x, y
coordinate numbers
If you need reference points between two shapes, use the Measure Tool (the ruler) and the Info Panel to see the coordinates info
Updated my question, I need tocoordiantes
or thepercentages
of the midpoint Thanks for the tip btw, at least I can align it perfectly now.
– appl3r
Apr 21 at 9:03
These are coordiantes relative to the whole document not the pointer. Do I need to copy and paste them to a new document, set the document size to match the path and do this?
– appl3r
Apr 21 at 9:17
Answer updated. I showed you all the possible tools, I think there are no more options inside Illustrator
– Danielillo
Apr 21 at 9:21
1
Measure tool works, I had to copy the base and the pointer to a new document though, because I had to use the measure tool from the top left corner and the selection outline (rectangle) disappears if I start using the measure tool and the circlepoint too, so I can only measure If I place new objects for help. Thanks!
– appl3r
Apr 21 at 9:36
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "174"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
appl3r is a new contributor. Be nice, and check out our Code of Conduct.
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%2fgraphicdesign.stackexchange.com%2fquestions%2f122789%2fhow-to-find-a-certain-coordinate-on-path-relative-to-another-path%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
With Illustrator you don't need any coordinate, if we had to do illustrations based on coordinates it would be a madness ;-)
- Select the circle and the pointer
- Prss R to activate the Rotation Tool
- Pres Cmd + Y Mac or Ctrl + Y Win to activate the Outline View
- Click the circle center once to define the rotation center
- Click the pointer top point and rotate
To see the coordinates points:
- Pres Cmd + U Mac or Ctrl + U Win to activate the Smart guides
- Put the mouse over the circle center to see
x, y
coordinate numbers
If you need reference points between two shapes, use the Measure Tool (the ruler) and the Info Panel to see the coordinates info
Updated my question, I need tocoordiantes
or thepercentages
of the midpoint Thanks for the tip btw, at least I can align it perfectly now.
– appl3r
Apr 21 at 9:03
These are coordiantes relative to the whole document not the pointer. Do I need to copy and paste them to a new document, set the document size to match the path and do this?
– appl3r
Apr 21 at 9:17
Answer updated. I showed you all the possible tools, I think there are no more options inside Illustrator
– Danielillo
Apr 21 at 9:21
1
Measure tool works, I had to copy the base and the pointer to a new document though, because I had to use the measure tool from the top left corner and the selection outline (rectangle) disappears if I start using the measure tool and the circlepoint too, so I can only measure If I place new objects for help. Thanks!
– appl3r
Apr 21 at 9:36
add a comment |
With Illustrator you don't need any coordinate, if we had to do illustrations based on coordinates it would be a madness ;-)
- Select the circle and the pointer
- Prss R to activate the Rotation Tool
- Pres Cmd + Y Mac or Ctrl + Y Win to activate the Outline View
- Click the circle center once to define the rotation center
- Click the pointer top point and rotate
To see the coordinates points:
- Pres Cmd + U Mac or Ctrl + U Win to activate the Smart guides
- Put the mouse over the circle center to see
x, y
coordinate numbers
If you need reference points between two shapes, use the Measure Tool (the ruler) and the Info Panel to see the coordinates info
Updated my question, I need tocoordiantes
or thepercentages
of the midpoint Thanks for the tip btw, at least I can align it perfectly now.
– appl3r
Apr 21 at 9:03
These are coordiantes relative to the whole document not the pointer. Do I need to copy and paste them to a new document, set the document size to match the path and do this?
– appl3r
Apr 21 at 9:17
Answer updated. I showed you all the possible tools, I think there are no more options inside Illustrator
– Danielillo
Apr 21 at 9:21
1
Measure tool works, I had to copy the base and the pointer to a new document though, because I had to use the measure tool from the top left corner and the selection outline (rectangle) disappears if I start using the measure tool and the circlepoint too, so I can only measure If I place new objects for help. Thanks!
– appl3r
Apr 21 at 9:36
add a comment |
With Illustrator you don't need any coordinate, if we had to do illustrations based on coordinates it would be a madness ;-)
- Select the circle and the pointer
- Prss R to activate the Rotation Tool
- Pres Cmd + Y Mac or Ctrl + Y Win to activate the Outline View
- Click the circle center once to define the rotation center
- Click the pointer top point and rotate
To see the coordinates points:
- Pres Cmd + U Mac or Ctrl + U Win to activate the Smart guides
- Put the mouse over the circle center to see
x, y
coordinate numbers
If you need reference points between two shapes, use the Measure Tool (the ruler) and the Info Panel to see the coordinates info
With Illustrator you don't need any coordinate, if we had to do illustrations based on coordinates it would be a madness ;-)
- Select the circle and the pointer
- Prss R to activate the Rotation Tool
- Pres Cmd + Y Mac or Ctrl + Y Win to activate the Outline View
- Click the circle center once to define the rotation center
- Click the pointer top point and rotate
To see the coordinates points:
- Pres Cmd + U Mac or Ctrl + U Win to activate the Smart guides
- Put the mouse over the circle center to see
x, y
coordinate numbers
If you need reference points between two shapes, use the Measure Tool (the ruler) and the Info Panel to see the coordinates info
edited Apr 21 at 9:21
answered Apr 21 at 8:59
DanielilloDanielillo
25.6k13686
25.6k13686
Updated my question, I need tocoordiantes
or thepercentages
of the midpoint Thanks for the tip btw, at least I can align it perfectly now.
– appl3r
Apr 21 at 9:03
These are coordiantes relative to the whole document not the pointer. Do I need to copy and paste them to a new document, set the document size to match the path and do this?
– appl3r
Apr 21 at 9:17
Answer updated. I showed you all the possible tools, I think there are no more options inside Illustrator
– Danielillo
Apr 21 at 9:21
1
Measure tool works, I had to copy the base and the pointer to a new document though, because I had to use the measure tool from the top left corner and the selection outline (rectangle) disappears if I start using the measure tool and the circlepoint too, so I can only measure If I place new objects for help. Thanks!
– appl3r
Apr 21 at 9:36
add a comment |
Updated my question, I need tocoordiantes
or thepercentages
of the midpoint Thanks for the tip btw, at least I can align it perfectly now.
– appl3r
Apr 21 at 9:03
These are coordiantes relative to the whole document not the pointer. Do I need to copy and paste them to a new document, set the document size to match the path and do this?
– appl3r
Apr 21 at 9:17
Answer updated. I showed you all the possible tools, I think there are no more options inside Illustrator
– Danielillo
Apr 21 at 9:21
1
Measure tool works, I had to copy the base and the pointer to a new document though, because I had to use the measure tool from the top left corner and the selection outline (rectangle) disappears if I start using the measure tool and the circlepoint too, so I can only measure If I place new objects for help. Thanks!
– appl3r
Apr 21 at 9:36
Updated my question, I need to
coordiantes
or the percentages
of the midpoint Thanks for the tip btw, at least I can align it perfectly now.– appl3r
Apr 21 at 9:03
Updated my question, I need to
coordiantes
or the percentages
of the midpoint Thanks for the tip btw, at least I can align it perfectly now.– appl3r
Apr 21 at 9:03
These are coordiantes relative to the whole document not the pointer. Do I need to copy and paste them to a new document, set the document size to match the path and do this?
– appl3r
Apr 21 at 9:17
These are coordiantes relative to the whole document not the pointer. Do I need to copy and paste them to a new document, set the document size to match the path and do this?
– appl3r
Apr 21 at 9:17
Answer updated. I showed you all the possible tools, I think there are no more options inside Illustrator
– Danielillo
Apr 21 at 9:21
Answer updated. I showed you all the possible tools, I think there are no more options inside Illustrator
– Danielillo
Apr 21 at 9:21
1
1
Measure tool works, I had to copy the base and the pointer to a new document though, because I had to use the measure tool from the top left corner and the selection outline (rectangle) disappears if I start using the measure tool and the circlepoint too, so I can only measure If I place new objects for help. Thanks!
– appl3r
Apr 21 at 9:36
Measure tool works, I had to copy the base and the pointer to a new document though, because I had to use the measure tool from the top left corner and the selection outline (rectangle) disappears if I start using the measure tool and the circlepoint too, so I can only measure If I place new objects for help. Thanks!
– appl3r
Apr 21 at 9:36
add a comment |
appl3r is a new contributor. Be nice, and check out our Code of Conduct.
appl3r is a new contributor. Be nice, and check out our Code of Conduct.
appl3r is a new contributor. Be nice, and check out our Code of Conduct.
appl3r is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Graphic Design 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.
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%2fgraphicdesign.stackexchange.com%2fquestions%2f122789%2fhow-to-find-a-certain-coordinate-on-path-relative-to-another-path%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