Page 1 of 1

arrow style - dot

Posted: Sat Nov 28, 2020 4:04 pm
by petevick
back before I retired, using CAD, and even when I was using a drawing board, I always preferred to use a dot arrow head, I just liked its uncluttered look. A lot of engineers and architect drawings we were issued with used them as well. So, please may we have a dot arrow option please, pretty please :D :D

Re: arrow style - dot

Posted: Sat Nov 28, 2020 5:16 pm
by TSG
Why don't you create your own dotted arrows?
It's very simple:
1. Create an arrow (perhaps make a block of it)
2. Create a layer with desired color, width and type

Thomas
dotted arrows.png
dotted arrows.png (112.42 KiB) Viewed 49268 times

Re: arrow style - dot

Posted: Sat Nov 28, 2020 5:50 pm
by petevick
TSG wrote:
Sat Nov 28, 2020 5:16 pm
Why don't you create your own dotted arrows?
It's very simple:
1. Create an arrow (perhaps make a block of it)
2. Create a layer with desired color, width and type

Thomas

dotted arrows.png
I know that was possible in AutoCad, but I can't see a way to replace the arrow or tick in Qcad with a block. And I didn't mean a dotted arrow, I meant a circular filled dot as in the attached.

Re: arrow style - dot

Posted: Sat Nov 28, 2020 7:36 pm
by Husky
Hi petevick ,
petevick wrote:
Sat Nov 28, 2020 4:04 pm
So, please may we have a dot arrow option please, pretty please :D :D
... looks like you are not the only one who is waiting for that:

https://www.qcad.org/bugtracker/index.p ... ask_id=695

https://www.qcad.org/bugtracker/index.p ... sk_id=1647

Re: arrow style - dot

Posted: Sat Nov 28, 2020 7:47 pm
by petevick
Husky wrote:
Sat Nov 28, 2020 7:36 pm
Hi petevick ,

... looks like you are not the only one who is waiting for that:

https://www.qcad.org/bugtracker/index.p ... ask_id=695

https://www.qcad.org/bugtracker/index.p ... sk_id=1647
Well there you go then :D it'd make a great Christmas present as well :D :D

Re: arrow style - dot

Posted: Wed Mar 13, 2024 3:07 pm
by franksbedford
Version:
3.29.4.0 (3.29.4)
Internet:
QCAD.org
Build Date:
Feb 7 2024
Revision:
36a6423
Qt Version:
5.14.2
Architecture:
x86_64
Compiler:
Clang 10.0.0


I would also like to us a dot in some places, rather than an arrow.

Is this possible at this point?

Re: arrow style - dot

Posted: Wed Mar 13, 2024 5:05 pm
by CVH
Hi,
The issue is that arrowheads under QCAD are not defined by specific Block's.
19-arrow-blocks.png
19-arrow-blocks.png (440.8 KiB) Viewed 42646 times

In QCAD arrowheads are nothing more then filled triangles each drawn in situ.
(RTriangle::createArrow(...) ... https://github.com/qcad/qcad/blob/maste ... pp#L83-L96)
From the code we can also deduct that the enclosed tip angle is twice 0.165rad or about 18.91 degrees.
ISO would be 30 degrees.

There is an exception and that is when you use the Architectural tick for dimensions ... A short slanted line instead of an RTriangle.

And there is yet another exception and that are the arrows used with Datum symbols.
These last create and use a Block '_DatumFilled' at the end of a Leader entity.
But nowhere that is reflected in the Property Editor ... There are thus Leaders with standard arrows and Leaders with Datum type arrows.
(Also see: https://www.qcad.org/rsforum/viewtopic.php?f=89&t=10694 ... https://qcad.org/bugtracker/index.php?d ... sk_id=2547)

Dimensions have a read only 'Block Name' property but it is unsure if that is the solution and if that is supported ...
... Setting this block property by code did not result in another arrowhead ... :?

Regards,
CVH