Jump to content
You must now use your email address to sign in [click for more info] ×

Recommended Posts

2 hours ago, Andreas Scherer said:

You can fake it well enough.

Could you explain how you did this?

Acer XC-895 : Core i5-10400 Hexa-core 2.90 GHz :  32GB RAM : Intel UHD Graphics 630 : Windows 10 Home
Affinity Publisher 2 : Affinity Photo 2 : Affinity Designer 2 : (latest release versions) on desktop and iPad

Link to comment
Share on other sites

2 hours ago, PaulEC said:

Could you explain how you did this?

For example:

Affinity Store (MSI/EXE): Affinity Suite (ADe, APh, APu) 2.4.0.2301
Dell OptiPlex 7060, i5-8500 3.00 GHz, 16 GB, Intel UHD Graphics 630, Dell P2417H 1920 x 1080, Windows 11 Pro, Version 23H2, Build 22631.3155.
Dell Latitude E5570, i5-6440HQ 2.60 GHz, 8 GB, Intel HD Graphics 530, 1920 x 1080, Windows 11 Pro, Version 23H2, Build 22631.3155.
Intel NUC5PGYH, Pentium N3700 2.40 GHz, 8 GB, Intel HD Graphics, EIZO EV2456 1920 x 1200, Windows 10 Pro, Version 21H1, Build 19043.2130.

Link to comment
Share on other sites

Thanks both, I know you can do spirals in other software (I’d use DrawPlus, myself if I needed to) but I was really wondering how you could “fake it” in Affinity.

Acer XC-895 : Core i5-10400 Hexa-core 2.90 GHz :  32GB RAM : Intel UHD Graphics 630 : Windows 10 Home
Affinity Publisher 2 : Affinity Photo 2 : Affinity Designer 2 : (latest release versions) on desktop and iPad

Link to comment
Share on other sites

11 minutes ago, PaulEC said:

how you could “fake it” in Affinity.

For example, by downloading the attached *.afdesign file in my link and using one of the offered spirals. Alternatively, I will save it/them to Assets for repeated use.

Affinity Store (MSI/EXE): Affinity Suite (ADe, APh, APu) 2.4.0.2301
Dell OptiPlex 7060, i5-8500 3.00 GHz, 16 GB, Intel UHD Graphics 630, Dell P2417H 1920 x 1080, Windows 11 Pro, Version 23H2, Build 22631.3155.
Dell Latitude E5570, i5-6440HQ 2.60 GHz, 8 GB, Intel HD Graphics 530, 1920 x 1080, Windows 11 Pro, Version 23H2, Build 22631.3155.
Intel NUC5PGYH, Pentium N3700 2.40 GHz, 8 GB, Intel HD Graphics, EIZO EV2456 1920 x 1200, Windows 10 Pro, Version 21H1, Build 19043.2130.

Link to comment
Share on other sites

I use a complement of apps to do what I want, I think, even if Affinity got a spiral tool I'd still use inkscape 1.2.2 for Mac out of habit, inkscape fills a lot of feature holes that affinity has, yes the UI is clumsy but the tools do what you want and the spiral tool is simple to use, although it could be made more... elegant, but you get exactly what you want, evenly spaced (Divergent: 1 - Last shape) concentric spirals, can't be bothered faffing around with workarounds. 

I think another year or two and Affinity will have ironed out a lot of the wrinkles and will start becoming the app suite it should be. Have you seen the bug list for 2.1.x it's epic and on top of that they are very slowly adding new features, such as cross reference in publisher for example.

iMac 27" 2019 Somona 14.3.1, iMac 27" Affinity Designer, Photo & Publisher V1 & V2, Adobe, Inkscape, Vectorstyler, Blender, C4D, Sketchup + more... XP-Pen Artist-22E, - iPad Pro 12.9  
B| (Please refrain from licking the screen while using this forum)

Affinity Help - Affinity Desktop Tutorials - Feedback - FAQ - most asked questions

Link to comment
Share on other sites

9 hours ago, Andreas Scherer said:

Later.

  • I draw concentric circles with diminishing radii and add two perpendicular lines.
  • With the Pen tool, I draw one curved line connecting the nodes marked with black dots and try to create a smooth spiral.
  • With the Art Text tool, I add the text in a single line.
  • With Font "Lobster Two Bold Cursive", I mark individual words/phrases and increase the font size from 28pt to 84pt.
  • Done.

 

Nodes.jpg

Link to comment
Share on other sites

1 hour ago, firstdefence said:

I use a complement of apps to do what I want

very slowly adding new features, such as cross reference in publisher

I use Rawtherapee for my photography needs (without DAM). And TeX simply is the non-plus-ultra for technical texts (including long-time archival format in plain text), although I would be hard pressed to suggest TeX for desktop (i.e., console) publishing. 🤓

Link to comment
Share on other sites

22 hours ago, 2ddpainter said:

you could use open half circles for this
(mirror it, scale it a bit and so on)

 

Spiral.png

Add a power duplicate or two, a join command and you have a spiral...

 

 

 

iMac 27" 2019 Somona 14.3.1, iMac 27" Affinity Designer, Photo & Publisher V1 & V2, Adobe, Inkscape, Vectorstyler, Blender, C4D, Sketchup + more... XP-Pen Artist-22E, - iPad Pro 12.9  
B| (Please refrain from licking the screen while using this forum)

Affinity Help - Affinity Desktop Tutorials - Feedback - FAQ - most asked questions

Link to comment
Share on other sites

On 4/17/2023 at 2:45 PM, lenogre said:

firstdefence : great tip but space between lines is not equal.

I notice that many of us want a spiral tool…

Yeah slight glitch in the process plus the many steps to even achieve a semblance of a spiral make it a moot point but wanted to show it can be done albeit clumsily.

iMac 27" 2019 Somona 14.3.1, iMac 27" Affinity Designer, Photo & Publisher V1 & V2, Adobe, Inkscape, Vectorstyler, Blender, C4D, Sketchup + more... XP-Pen Artist-22E, - iPad Pro 12.9  
B| (Please refrain from licking the screen while using this forum)

Affinity Help - Affinity Desktop Tutorials - Feedback - FAQ - most asked questions

Link to comment
Share on other sites

Well there are thousend of ways & tools to draw spirals. - Here is one of the most trivial one by using just plain turtle graphics and 8 lines of py code ...

import turtle as t

t.tracer(10,1)

for i in range(360):
 t.circle(i,20)

t.update()

 

Of course we can instead also use 10 turtles simultaniously in order to do a slightly more interesting spiral ...

import turtle as t

t.tracer(10,1)

N = 10
angle = 30

turtles = []
for position in range(N):
  look_at = 360/N*position
  new = t.Turtle()
  new.setheading(look_at)
  turtles.append(new)

for radius in range(360):
  for my in turtles:
    my.circle(radius*radius, angle)

t.update()

With scripting and a few lines of code one can do much much more, like text and object spirals etc. etc. - All in all much more things like an embedded spiral tool would ever can offer here.

 

☛ Affinity Designer 1.10.8 ◆ Affinity Photo 1.10.8 ◆ Affinity Publisher 1.10.8 ◆ OSX El Capitan
☛ Affinity V2.3 apps ◆ MacOS Sonoma 14.2 ◆ iPad OS 17.2

Link to comment
Share on other sites

It's also easy to do with Nodebox , which is a fun play around tool for generative drawing stuff and can also export as SVG/PDF vectors.

exploring-spiral-part2.png

☛ Affinity Designer 1.10.8 ◆ Affinity Photo 1.10.8 ◆ Affinity Publisher 1.10.8 ◆ OSX El Capitan
☛ Affinity V2.3 apps ◆ MacOS Sonoma 14.2 ◆ iPad OS 17.2

Link to comment
Share on other sites

  • 4 weeks later...

To be quiet honest, I don't know why I should have to fake something like a Spiral or why I should have another piece of software on my computer (and that may not be available on the iPad) just because it is not available on AD.

I've used FreeHand and Illustrator since 1994 and both apps had spiral tools back then already. Surely it can't be rocket science to include a spiral tool? Why does Affinity not just take the opensource data from InkScape and build a tool from there?

I really don't want to leave the AD workspace to go to another app to make a spiral (which I use a lot), and then import or copy and paste it over into AD to continue work there... I'm sorry. If I need a spiral intensive job I go to Illustrator and I do the entire job there, no matter how much I love AD.

PS. The Spiral tool is the only reason I still have Adobe on my computer.

Link to comment
Share on other sites

  • 4 months later...
  • 1 month later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.