• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

How to create a polygon shape with each side a different length?

Community Beginner ,
Feb 02, 2023 Feb 02, 2023

Copy link to clipboard

Copied

How do you assign differing side lengths to a basic polygon?

 

I understand that creating a s=1 for all sides is possible in the shape dialog box.

But, say for example, I wanted to creat a pentagon with side lengths: 1, 2, 1, 2, 1
Screenshot 2023-02-02 at 6.58.08 PM.png

And/or is there a way to apply the Python turtle-graphics approach to map out more complex sequences? (ie insert a seqence of lengths and angles)

 

See example:
sequences with s= 1,2,3... etc. (with various angles.)

0.png


Thanks for any thoughts or approaches.

Views

1.2K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Community Expert ,
Feb 02, 2023 Feb 02, 2023

Copy link to clipboard

Copied

draw connected lines.

 

what app?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 02, 2023 Feb 02, 2023

Copy link to clipboard

Copied

@adamg66397417 

 

I would use Adobe Illustrator, as it has various features that will assist:

  • Draw lines, then use Join to make one shape
  • Construction guides to draw at a specific angle, such as 30°, 90°, or 17°
  • Smart guides assist throughout
  • Anchor points can be adjusted after drawing
  • Rotate and repeat rotation from a specific point
  • Snap to Point means precision
  • Tons more

 

Shall we move your post to the Illustrator forum?

 

Jane

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Feb 13, 2023 Feb 13, 2023

Copy link to clipboard

Copied

>>Shall we move your post to the Illustrator forum?

Yes, perhaps that would be best. Thanks everyone for respones.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 13, 2023 Feb 13, 2023

Copy link to clipboard

Copied

in the future, to find the best place to post your message, use the list here, https://community.adobe.com/

 

p.s. i don't think the adobe website, and forums in particular, are easy to navigate, so don't spend a lot of time searching that forum list. do your best and we'll move the post if it helps you get responses.

 

<moved from using the community>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Feb 13, 2023 Feb 13, 2023

Copy link to clipboard

Copied

Thanks

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 13, 2023 Feb 13, 2023

Copy link to clipboard

Copied

you're welcome.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 03, 2023 Feb 03, 2023

Copy link to clipboard

Copied

Which Adobe software or service are you using?

 

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 11, 2023 Feb 11, 2023

Copy link to clipboard

Copied

To create the more complex shapes programmatically in Illustrator you could use JavaScript.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 11, 2023 Feb 11, 2023

Copy link to clipboard

Copied

There are many ways to skin the proverbial cat. It all depends on what your output will be used for.  You could make a shape in Photoshop with the Polygon tool as I have here.

2 Polygons, different sizes, unwanted lines masked out.2 Polygons, different sizes, unwanted lines masked out.

 

Or you can code one in Dreamweaver or any other code editor you wish to use. You have complete control over the number of points and where points begin & end.

https://www.w3schools.com/graphics/tryit.asp?filename=trysvg_polygon2

 

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Polygon SVG</title>
</head>

<body>
Polygon with 5 points, change point values to alter its shape
<svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg">
<polygon points=
"0,100 
110,25 
120,75 
145,90 
153,75" 
fill="none" 
stroke="indigo" />
</svg>
</body>
</html>

 

Hope that helps.

 

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 13, 2023 Feb 13, 2023

Copy link to clipboard

Copied

LATEST

Adam,

 

For changes like in your pentagon with side lengths: 1, 2, 1, 2, 1, you can use the native tools in the following kind of way, starting with the original pentagon, Smart Guides being your friends:

 

1) Create a circle with W = H = 4 times the original side length, with its centre snapped to the leftmost corner Anchor Point;

2) With the Direct Selection Tool Click the two bottommost corner Anchor Points, then ShiftClickDrag by the left one downwards to snap to the circle.

 

 

Click/RightClick to get closer, Click again to get closer still

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines