New Feature: Technical Draw in Detail Mode, issue #333

It would be nice to have technical draw in detail mode. Also the possibility to scale pattern in order to reduce size to print the technical draw.

3 Likes

Hi @alinegesualdi and again, welcome.

Iā€™m not too sure if I understand. Perhaps Iā€™m very dumb today. :slight_smile: Please can you explain it to me?

1 Like

It could be something similar to the picture attached. If I could write in Detail Mode in order to include some technical details. Other issue would to be able to reduce piece size to fit in a A4 paper with technical specs.

Please feel free to ask if I didnā€™t explain well.

Best regards Aline

2 Likes

Thatā€™s really beautifully done. However, Iā€™m only a program user, so one of the developers would be better able to reply to you. However, I feel that the teaching material created in your image is a little beyond the purpose of the patternmaking software and also limits you in using different size measurement or multi-size tables.

That said, I think the solution would be to export your pattern from the Layout board to .svg. Open the .svg with Inkscape or similar software, add your dimensions and reduce it to fit onto an A4. I do this quite a bit and itā€™s really easy.

I hope this helps you with your training. :slight_smile:

2 Likes

Thank you Grace! I agree with you! :slight_smile: :slight_smile: Best, Aline

1 Like

Hi Alineā€¦

Like I mentioned on the Github thereā€™s 2 separate parts to your issue.

Letā€™s take the 2 part first. Scaling can be done in several different ways - without adding anything to Seamly2D.

  • You could export a pattern layout as a pdf and then print it whatever scale you want.

  • You could export it as an SVG and import / manipulate the pattern pieces in a program like the free open source Inkscape. OR export as a DXF and import into the free LibreCad program.

  • You could use the formulas feature of the program to define a scale for a pattern. Open up the Variables Table and create a ā€œcustomā€ incrementā€¦ letā€™s say scale and set itā€™s formula (value) to 1.

Screenshot (122)

Then for the formula for each of your tool objects - multiply the length by scaleā€¦ 1 being 100%.

Screenshot (121)

Then all you have to do to change the scale is change the value of scale in the Variables Table and since all the objects are multiplied by scale they will all automatically change length. If you want 1/10 or 10%ā€¦ set the value to .1. 1/2 scaleā€¦ .5. etc

That being saidā€¦ now the first part - technical details. Help me understand what your use for this feature would be. Like I said on Github in the near future I plan to add the ability to add text to pattern piecesā€¦ that would accomplish being able to add dimensions to a pattern piece.

4 Likes

Thank you Douglas! I loved the solution by using increments!

In relation to the first part the ability to add text to pattern pieces will certainly solve the issue.

Thanks a lot! Best, Aline.

2 Likes

It had never occurred to me to use a scaling increment in that way. Thank you for a great idea.

2 Likes

So as Iā€™m doing a periodic scan of the Github issues, Iā€™ve come back this topic that @slspencer suggested:

ā€œThis tool could be called Technical Drawing, available in Detail mode. The pieces can be selected exactly the same way as for creating a Layout. Each segment on a piece (from point to point) can be annotated similarly to a Detail label, with dropdown content, width, height, and angle. The Technical Drawing can be exported the same way as a Layout (PDF, JPG, SVG) and scaled to fit a target paper size or custom size with a selected margin. This is a complex feature and requires discussion on the forum.ā€

Using the KISS principle and boiling it downā€¦ no itā€™s not such a complex issue. Itā€™s simply a matter of adding a detail ā€œdimensionā€ tool. No different than grainlines or labels. Basically it would be a glorified text tool with the addition of extension and dimension lines. Maybe a user would be able to select 2 points, and then configure the dimensionā€™s look?

Nothing needs to change to the pattern piece modeā€¦ no new ā€œtechical drawingā€ is needed. Just like Iā€™ve made the other detail items, a user would be able to toggle dimensions on / off before exporting.

In regards to scalingā€¦ besides the existing options - I could add a scale factor in the Export Dialog?

2 Likes

I added an issue to improve the SVG export so that each pattern piece has its own group. Technical Drawing exports could be more easily published and included in documentation if they are easier to edit, etc. Right now our SVG export files have a ā€˜flatā€™ organization and if you move a pattern piece you might leave behind the notches, grainlines, internal paths, or other features of that pattern piece.

Feature: Create pattern piece groups in SVG file export Ā· Issue #716 Ā· FashionFreedom/Seamly2D Ā· GitHub

3 Likes

Now I know where the Github issue stemned from. :slight_smile:

So if I understand correctly ā€¦ currently if one exports pieces in piece mode you end up with a whole bunch of pieces, rather than a piece grouped together with itā€™s labels, grainlines, etc? Thus you canā€™t just move a piece as a whole?

I will look into what it may take to do this.

2 Likes

I fear this may take a custom rolled routine to export pieces as a group of itā€™s constituent parts. Currently the way the app exports to SVG is it uses the QSVGGenerator that takes a rect from a graphics scene - in this case a rect of all the graphic items in a scene - and generates an SVG xml in one swoop. What we need is to loop through the VPieces, writing a < g > tag, followed by all the pieceā€™s items, close < /g> tagā€¦ repeat. Would be nice if the QSVGGenerator used QGraphicItemGroups to export as SVG groupsā€¦ but I see no reference to such behavior. :frowning:

3 Likes