Search found 6147 matches

by wandererfan
Thu Apr 18, 2024 7:10 pm
Forum: TechDraw
Topic: Issue #5694 Broken View
Replies: 34
Views: 2989

Re: Issue #5694 Broken View

Most often, if it was a linked object or resided within some container object, pressing the "Broken View" button resulted in an error message saying that a break object couldn't be found within the selection. Yeah, App::Link needs lots of special handling to get the right object/shape/loc...
by wandererfan
Thu Apr 18, 2024 7:04 pm
Forum: TechDraw
Topic: Testing Help Request - Cosmetics
Replies: 3
Views: 187

Re: Testing Help Request - Cosmetics

edi wrote: Thu Apr 18, 2024 2:53 pm
Great! Thank you.

Just to clarify, your results are all for the "red" tools, correct? Must get around to merging a few tools some day.
by wandererfan
Thu Apr 18, 2024 6:47 pm
Forum: TechDraw
Topic: [FIXED] TD Leaderline jumps to page corner after save-load cycle
Replies: 4
Views: 211

Re: [BUG?] TD Leaderline jumps to page corner after save-load cycle

The case in the example file should be fixed by 1b39f6f3d9 . There were changes to view parenting recently and this might have been a side effect. Dimension, Balloons and now Leaders should be ok, but there may be issues with other things that can be a child of another view (RichAnno comes to mind,...
by wandererfan
Thu Apr 18, 2024 2:30 pm
Forum: TechDraw
Topic: API: getVertexBySelection() is broken in version 0.21.x
Replies: 11
Views: 954

Re: API: getVertexBySelection() is broken in version 0.21.x

JarvisOac wrote: Mon Apr 15, 2024 10:31 pm
It doesn't help you on v21, but DrawViewPart.getVisibleVertexes() and DrawViewPart.getHiddenVertexes() are available in main branch after git commit 5ed00d52dc.
by wandererfan
Thu Apr 18, 2024 12:55 pm
Forum: TechDraw
Topic: Testing Help Request - Cosmetics
Replies: 3
Views: 187

Testing Help Request - Cosmetics

If somebody has time on their hands, and can compile from source, I could use some testing help. I have a branch (https://github.com/WandererFan/FreeCAD/tree/CosmeticReview4) that contains improvements to the scaling and rotating of cosmetic vertices and edges. It also contains changes to leader poi...
by wandererfan
Tue Apr 16, 2024 5:25 pm
Forum: TechDraw
Topic: Detailed view linked dimensions move
Replies: 6
Views: 579

Re: Detailed view linked dimensions move

I would also loke to find out why he first method I tried didn't work. The code for dimensions in a detail view was broken. It was computing the dimension points as if they were to go on the base view, not the detail. Should be fixed in main branch after 96cfd6b3dc . Sewing Machine Case_mwe_dim3d.p...
by wandererfan
Tue Apr 16, 2024 12:41 pm
Forum: TechDraw
Topic: API: getVertexBySelection() is broken in version 0.21.x
Replies: 11
Views: 954

Re: API: getVertexBySelection() is broken in version 0.21.x

While you are waiting for getVisibleVertexes(), you could try this: vertices = list() edges = view.getVisibleEdges() for item in edges: vertices.append(item.firstVertex().Point) vertices.append(item.lastVertex().Point) uniqueVerts = list() for v in vertices: if v not in uniqueVerts: uniqueVerts.app...
by wandererfan
Tue Apr 16, 2024 12:17 am
Forum: TechDraw
Topic: Issue #5694 Broken View
Replies: 34
Views: 2989

Re: Issue #5694 Broken View

Dimensioning should be improved by git commit 41bce2eaf4.
by wandererfan
Mon Apr 15, 2024 5:50 pm
Forum: TechDraw
Topic: API: getVertexBySelection() is broken in version 0.21.x
Replies: 11
Views: 954

Re: API: getVertexBySelection() is broken in version 0.21.x

JarvisOac wrote: Sun Apr 14, 2024 8:55 pm
You are missing the sleep() between recompute() and find_vertices().