08-09-2021, 09:46 AM
Many objects in the Ab3d.PowerToys library use WPF's DependencyProperties that should support binding - also Heading, Attitude and Bank are implemented with DependencyProperties and therefore can be used with binding.
I am not an expert on binding but anyway to try to help you, I would need more information about which properties do you want to bind to and what method do you use to do that.
However, except for simple cases like camera angles and similar, I would not recommend using binding on 3D objects because binding is very slow and can make the code more complicated. The number of 3D objects can quickly become high and then binding will slow down the whole application. Therefore please use binding with causion.
I am not an expert on binding but anyway to try to help you, I would need more information about which properties do you want to bind to and what method do you use to do that.
However, except for simple cases like camera angles and similar, I would not recommend using binding on 3D objects because binding is very slow and can make the code more complicated. The number of 3D objects can quickly become high and then binding will slow down the whole application. Therefore please use binding with causion.
Andrej Benedik

