Search found 1949 matches

by Joel_graff
Mon Feb 08, 2021 1:58 pm
Forum: Open discussion
Topic: Departure of microelly2, Abfahrt von microelly2, moderator, developer
Replies: 19
Views: 121399

Re: Departure of microelly2, Abfahrt von microelly2, moderator, developer

I had wondered if perhaps he had to take leave. I was watching his work on PyFlow with interest.

Thanks, Thomas for the great help you provided in getting me going with Trails! I hope we see yo back here soon!
by Joel_graff
Mon Feb 08, 2021 1:21 pm
Forum: Open discussion
Topic: Civil engineering feature implementation (Transportation Engineering)
Replies: 1277
Views: 233431

Re: Civil engineering feature implementation (Transportation Engineering)

HakanSeven12 wrote: Sat Feb 06, 2021 5:12 pm So a function that returns that stations can be helpful :)
Are you using the AlignmentModel class? You should be able to get actual stationing from that. Otherwise, I don't think I have a solution - at least, not one that can account for omissions / station equations along the alignment.
by Joel_graff
Mon Feb 08, 2021 1:18 pm
Forum: Open discussion
Topic: Civil engineering feature implementation (Transportation Engineering)
Replies: 1277
Views: 233431

Re: Civil engineering feature implementation (Transportation Engineering)

That is returning the offset points of stations. How can I get angle from it? I didn't see your reply when I posted mine... To get the angle between, I have that built into the TupleMath module in freecad_python_support. I think it's also a function in the FreeCAD.Vector class. Let me know if you n...
by Joel_graff
Sat Feb 06, 2021 11:27 pm
Forum: Open discussion
Topic: Civil engineering feature implementation (Transportation Engineering)
Replies: 1277
Views: 233431

Re: Civil engineering feature implementation (Transportation Engineering)

HakanSeven12 wrote: Sat Feb 06, 2021 6:42 pm That is returning the offset points of stations. How can I get angle from it?
Does this help?

https://github.com/joelgraff/freecad.tr ... el.py#L668
by Joel_graff
Sat Feb 06, 2021 5:35 pm
Forum: Open discussion
Topic: Civil engineering feature implementation (Transportation Engineering)
Replies: 1277
Views: 233431

Re: Civil engineering feature implementation (Transportation Engineering)

Also I need a function that return station orthogonal vector angle to rotate label text You can't just use what you use already to calculate section lines? Also I want to add labels for horizontal geometry points. So a function that returns that stations can be helpful That's already done. It may n...
by Joel_graff
Sat Feb 06, 2021 3:30 pm
Forum: Open discussion
Topic: Civil engineering feature implementation (Transportation Engineering)
Replies: 1277
Views: 233431

Re: Civil engineering feature implementation (Transportation Engineering)

Station labels are something I need to add to the design side as well. One more item for the list. As for the Final thing - I did that to enforce Const-ness for the python coin enumerant classes I created. I can roll that back, though. It's not necessary. And thanks for the benchmark dataset. If / w...
by Joel_graff
Thu Feb 04, 2021 6:47 pm
Forum: Open discussion
Topic: Civil engineering feature implementation (Transportation Engineering)
Replies: 1277
Views: 233431

Re: Civil engineering feature implementation (Transportation Engineering)

I think most difficult port of the design is the alignment layouts and did lots of think. İt looks like you are close the result. The other things will be more easier. I want to see some profiles and a complete model of a road Me too! I really didn't mean to side track with this whole pivy-trackers...
by Joel_graff
Thu Feb 04, 2021 4:29 pm
Forum: Open discussion
Topic: Civil engineering feature implementation (Transportation Engineering)
Replies: 1277
Views: 233431

Re: Civil engineering feature implementation (Transportation Engineering)

Right - I can imagine it'll come in handy especially for the finished terrains you're generating, Definitely easy to generate those shapes as they're needed, too, but I'm happy to generate the shapes when the model is built - that's a good time to do it. On a related topic, this actually puts us pre...
by Joel_graff
Thu Feb 04, 2021 3:16 pm
Forum: Open discussion
Topic: Civil engineering feature implementation (Transportation Engineering)
Replies: 1277
Views: 233431

Re: Civil engineering feature implementation (Transportation Engineering)

Well, that's better. :) I knew I was close. lol Anyway, I still have to work out a couple issues, but I was wondering, why even bother with the Shape object? So long as you have the individual points which are added directly to the scene graph in the custom ViewProvider, does building a compound par...
by Joel_graff
Wed Feb 03, 2021 10:46 pm
Forum: Open discussion
Topic: Civil engineering feature implementation (Transportation Engineering)
Replies: 1277
Views: 233431

Re: Civil engineering feature implementation (Transportation Engineering)

To implement the red color and sogeo nodes you need to change object type to App::FeaturePython. Add a vectorlist property and use my view provider. Ok, so I've been trying to rework the code to make our approaches fit. Your implementation of the Alignment object "has a" Shape (a Part::Sh...