-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blender python module (willing to collaborate or work alone) #112
Comments
I do not have time to collaborate at this time, however the geodesic module does have the machinery to do what you want. It still has some bugs. What you want to do, is start at the 'target point" and then build the geodesic field out from the target point until you reach the seed point. Once you reach the seed point, you then walk back down the gradient field. So the "geodesic_walk" "conitnue_geodesic_walk" and "gradient_descent" are the functions you want to look at in geodesic.py And for an implementation, where the geodesic field calculation happens in chunks (allowing an operator to stay interactive) https://github.com/patmo141/cut_mesh/blob/master/op_geopath/geopath_datastructure.py |
I think I understand your explanation on what I have to do. I am not sure how I am going to use the framework you are mentioning. Where would I define the target point? Also, am I supposed to store the data using an instance of the GeoPath class for each path? When would I use "conitnue_geodesic_walk", and "gradient_descent". Is "geodesic_walk" the initiator of the walk while "conitnue_geodesic_walk" takes additional steps. Not sure what gradient_descent returns. Do you take the negative of the gradient at the given point to get the point of fastest descent? This certainly led me to having more questions, but I think this is doable. I just need some help understanding the extension. It has almost no documentation. |
Could you please reply? I need some guidance to get started |
I am i need of automating the computation of the surface distance between multiple points on a 3d model of a cell. I believe that this repository is a step in the right direction for my project. I am in, therefore, need of this addon being available on python.
The addon would be like this:
Can you help me to get started? We can collaborate if you wouldl like!
The text was updated successfully, but these errors were encountered: