Vous pourriez créer une polyligne à partir de celle-ci :
Dessin > Polyligne > Polyligne à partir des segments
Search found 8357 matches
- Tue Jun 28, 2022 11:11 am
- Forum: QCAD Professional
- Topic: [Resolve] [Ovale] Fusionner les petit bouts d'arc de cercles
- Replies: 2
- Views: 12
- Mon Jun 27, 2022 2:39 pm
- Forum: QCAD 'How Do I' Questions
- Topic: [solved] assembly drawing
- Replies: 2
- Views: 72
Re: assembly drawing
Putting the inserted drawings on separate layers seems like the best way to go. Note that if you drag drawing files into your drawing area, a block is created in the process. Changing the layer of the resulting block reference will not change the layer of the entities in the block. To do that, you'd...
- Mon Jun 27, 2022 8:07 am
- Forum: QCAD Professional
- Topic: Schrifgrösse in den apps
- Replies: 1
- Views: 71
Re: Schrifgrösse in den apps
Am Einfachsten setzen Sie die QCAD-Konfiguration zurück:
https://qcad.org/de/tutorial-resetting- ... figuration
https://qcad.org/de/tutorial-resetting- ... figuration
- Mon Jun 27, 2022 7:05 am
- Forum: Chat
- Topic: R12_DXF favorite saving
- Replies: 3
- Views: 95
Re: R12_DXF favorite saving
DXF R12 cannot save all the information in your drawing and should be considered a legacy export format only. DXF R12 will not save your custom properties or the real colors of entities. Splines are converted to polylines on export. Black entities and layers are saved as white. I'd suggest to keep y...
- Wed Jun 22, 2022 9:16 pm
- Forum: Chat
- Topic: Solved: Drawing initial set-up
- Replies: 4
- Views: 252
Re: Drawing initial set-up
Auto zoom zooms to all your visible entities. It zooms the drawing to its maximum zoom, so that everything is visible and nothing is cut off: https://qcad.org/doc/qcad/latest/reference/en/index.php?page=scripts/View/Zoom/AutoZoom/doc/AutoZoom Please note that if you can attach your drawing file, we ...
- Tue Jun 21, 2022 1:07 pm
- Forum: QCAD Professional
- Topic: [résolu] Longueur total + nombre d'entrée
- Replies: 7
- Views: 336
Re: Longueur total + nombre d'entrée
Les résultats de ces outils sont généralement affichés dans l'historique de la ligne de commande. Il n'est pas prévu d'afficher ces informations dans la barre d'état, car il s'agit d'une demande plutôt spécifique à un cas d'utilisation. Notez que vous pouvez déplacer l'historique de la ligne de comm...
- Tue Jun 21, 2022 10:12 am
- Forum: QCAD Professional
- Topic: [résolu] Longueur total + nombre d'entrée
- Replies: 7
- Views: 336
Re: Longueur total + nombre d'entrée
Vous pouvez essayer ceci : - Sélectionnez tout - Dessin > Polyligne > Polyligne à partir de la sélection - Sélectionnez tout - Lisez la propriété "Longueur totale" dans l'éditeur de propriétés. Veillez à annuler la conversion en polyligne ou à enregistrer ce fichier sous un nouveau nom pour ne pas p...
- Mon Jun 20, 2022 3:06 pm
- Forum: QCAD Troubleshooting and Problems
- Topic: SVG export issue
- Replies: 1
- Views: 128
Re: SVG export issue
Thanks. Bug report at:
https://www.qcad.org/bugtracker/index.p ... sk_id=2373
https://www.qcad.org/bugtracker/index.p ... sk_id=2373
- Mon Jun 20, 2022 1:46 pm
- Forum: QCAD Professional
- Topic: gelöst: Schraffur wird angeboten aber nicht durchgeführt.
- Replies: 2
- Views: 264
Re: Schraffur wird angeboten aber nicht durchgeführt.
Die Polylinie besteht aus 8 Linien, beginnend unten rechts, dann im Gegenuhrzeigersinn zweimal rund. Die Schraffur ist so leider nicht möglich. Am besten das Rechteck neu zeichnen. Sehen kann man das gut im Eigenschafteneditor (8 Knotenpunkte statt 4).
- Sat Jun 18, 2022 11:24 am
- Forum: QCAD Troubleshooting and Problems
- Topic: [Solved] Qcad professional 3.27.6 crash at startup
- Replies: 2
- Views: 139
Re: Qcad professional 3.27.6 crash at startuo
Please reset your configuration and try again:
https://qcad.org/en/tutorial-resetting- ... figuration
https://qcad.org/en/tutorial-resetting- ... figuration
- Fri Jun 17, 2022 9:41 pm
- Forum: QCAD Community Edition
- Topic: paste entities into other layer
- Replies: 6
- Views: 557
Re: paste entities into other layer
By default, entities are pasted to their original layer.
You can choose "To current layer" in the options toolbar to paste to the current layer instead.
PS: please post to the correct forum for the QCAD Community Edition:
https://www.qcad.org/rsforum/viewforum.php?f=76
You can choose "To current layer" in the options toolbar to paste to the current layer instead.
PS: please post to the correct forum for the QCAD Community Edition:
https://www.qcad.org/rsforum/viewforum.php?f=76
- Fri Jun 17, 2022 7:56 pm
- Forum: QCAD Suggestions and Feedback
- Topic: [Solved] Unsaved indicator
- Replies: 2
- Views: 369
Re: Unsaved indicator
This is correct behaviour. Since the current layer state (on/off) is saved to the DXF/DWG file, switching a layer on/off is indeed a modification compared to the file on disk.
- Thu Jun 16, 2022 12:54 pm
- Forum: QCAD Troubleshooting and Problems
- Topic: [solved] Crash on open of file
- Replies: 6
- Views: 255
Re: Crash on open of file
qcad-3.27.6-pro-linux-qt4-x86_64.tar.gz is a legacy package intended for (very) old Linux distributions (10+ years). Please download and install instead: QCAD Professional 3.27.6 for Linux 64bit qcad-3.27.6-pro-linux-x86_64.tar.gz / .run Or: QCAD Professional 3.27.6 for Linux Qt 5.14 64bit qcad-3.27...
- Thu Jun 16, 2022 10:06 am
- Forum: QCAD Programming, Script Programming and Contributing
- Topic: Getting handle inside start or end Transaction()?
- Replies: 2
- Views: 238
Re: Getting handle inside start or end Transaction()?
To get the handle of the objects added by a transaction, you'd have to re-query the object after adding it or inspect the transaction, for example: ... transaction = endTransaction(); var ids = transaction.getAffectedObjects(); for (var i=0; i<ids.length; ++i) { var id = ids[i]; var entity = documen...
- Thu Jun 16, 2022 9:58 am
- Forum: QCAD Suggestions and Feedback
- Topic: possible enchancement - cumulative point to point distances
- Replies: 1
- Views: 134
Re: possible enchancement - cumulative point to point distances
May I suggest to simply draw a polyline, then select it to read its measurement in the property editor? Perhaps do this on a dedicated layer and even keep it in your drawing for future reference.