Search found 13 matches

by dx0ddyu
Wed May 01, 2019 2:27 pm
Forum: .NET
Topic: Are there any 2d free rotation tools?
Replies: 5
Views: 14836

Re: Are there any 2d free rotation tools?

But given what you already have it should be trivial for you to make it do what I want :wink: :!: :!: :!:
by dx0ddyu
Tue Apr 30, 2019 8:12 pm
Forum: .NET
Topic: Are there any 2d free rotation tools?
Replies: 5
Views: 14836

Re: Are there any 2d free rotation tools?

Well, no. I don't think this does what i'd like. It allows rotation around axes that I don't care about. I'd like an x/y plane and I'd like to be able to do free rotation around an arbitrary point like, oh, the origin.
by dx0ddyu
Tue Apr 30, 2019 7:45 pm
Forum: .NET
Topic: Are there any 2d free rotation tools?
Replies: 5
Views: 14836

Re: Are there any 2d free rotation tools?

OK... Like that, perhaps. There are some unfortunate zoom effects in the demo - if I grab to rotate it always also zooms in or out. Have hints on how to still have zoom and also have rotate?
by dx0ddyu
Mon Apr 29, 2019 6:00 pm
Forum: .NET
Topic: Are there any 2d free rotation tools?
Replies: 5
Views: 14836

Are there any 2d free rotation tools?

I'm able to rotate about the origin 90 degrees at a time easily enough. Are there any tools to allow free rotation around some origin? I'm not finding anything!

Or, if I use a 3d graph but constrain it to 2d will this allow free rotation?

thx
by dx0ddyu
Thu Mar 01, 2018 3:51 pm
Forum: .NET
Topic: What can I do to improve VB.NET gauge performance?
Replies: 11
Views: 21862

Re: What can I do to improve VB.NET gauge performance?

Thanks Christopher. We'll keep these things in mind as we go forwards.
by dx0ddyu
Wed Feb 28, 2018 5:28 pm
Forum: .NET
Topic: What can I do to improve VB.NET gauge performance?
Replies: 11
Views: 21862

Re: What can I do to improve VB.NET gauge performance?

So I have to ship. So what I did was to make the background of the Tchart a dark color and then I hide the frame. This is suboptimal but, hey, well, it does work, I suppose. And it performs.
by dx0ddyu
Wed Feb 28, 2018 3:04 pm
Forum: .NET
Topic: What can I do to improve VB.NET gauge performance?
Replies: 11
Views: 21862

Re: What can I do to improve VB.NET gauge performance?

Although, hey, that doesn't help things work.

So, a full circle dial does work but they don't with limit stops? That doesn't really make sense to me. Ah well.
by dx0ddyu
Wed Feb 28, 2018 2:46 pm
Forum: .NET
Topic: What can I do to improve VB.NET gauge performance?
Replies: 11
Views: 21862

Re: What can I do to improve VB.NET gauge performance?

Looks like gauge.Frame.circled is really bad on performance and it doesn't appear to affect the end visual result - in this case.
by dx0ddyu
Wed Feb 28, 2018 12:57 pm
Forum: .NET
Topic: What can I do to improve VB.NET gauge performance?
Replies: 11
Views: 21862

Re: What can I do to improve VB.NET gauge performance?

Well, in theory the .NET WPF is rendering using DirectX, no? And this is, in fact, born out by that project. If you close the Forms window and open several more WPF windows and then do the performance profiling again you will see radically different results. The WPF forms render much faster. Still, ...
by dx0ddyu
Tue Feb 27, 2018 8:26 pm
Forum: .NET
Topic: What can I do to improve VB.NET gauge performance?
Replies: 11
Views: 21862

Re: What can I do to improve VB.NET gauge performance?

Thx. I'll upload something I suppose :) My feeling right this second is that implementing this (fully) in WPF will probably help. Kind of a bummer, really, since it already all exists. Hopefully that will render using the video card and not the CPU. I guess I'll do a few tests to make sure things wo...
by dx0ddyu
Tue Feb 27, 2018 2:42 pm
Forum: .NET
Topic: What can I do to improve VB.NET gauge performance?
Replies: 11
Views: 21862

Re: What can I do to improve VB.NET gauge performance?

How do we set up double/triple buffering? Any benefit to doing so? Or, can I push the processing of each gauge to a different thread (nope!) [/i]? To the video card? Assuming I'm showing 2 copies of each gauge (that's just life) can I do magic and draw each just once but show it twice (albeit, alas,...
by dx0ddyu
Mon Feb 26, 2018 8:20 pm
Forum: .NET
Topic: What can I do to improve VB.NET gauge performance?
Replies: 11
Views: 21862

Re: What can I do to improve VB.NET gauge performance?

(And... I'd rather not post my code, actually. As I'm perusing the forum right now I see that GoogleBot is as well. Sigh...)
by dx0ddyu
Mon Feb 26, 2018 8:19 pm
Forum: .NET
Topic: What can I do to improve VB.NET gauge performance?
Replies: 11
Views: 21862

What can I do to improve VB.NET gauge performance?

I've made a user control that represents the gauge I'd like to use. When I make, say, 10 instances of this control and attempt to update them every .4 seconds then systems.windows.forms.ni.dll uses 94% of my computer's CPU and only the form that has focus will actually update. If you prefer, it's st...