Difference between revisions of "Vesicle models"

From Dynamo
Jump to navigation Jump to search
(Created page with "Vesicle models are appropriate when particles are evenly distributed on surfaces reasonably similar to spheres or ellipsoids. The model can estimate the center and radius pro...")
 
Line 11: Line 11:
  
 
===Given center and radius===
 
===Given center and radius===
 +
<nowiki>
 
a = dmodels.vesicle(); % creates an empty vesicle model
 
a = dmodels.vesicle(); % creates an empty vesicle model
 
a.radius = 70;
 
a.radius = 70;
Line 20: Line 21:
 
axis equal; % for a better visualization, same scale an x,y,z
 
axis equal; % for a better visualization, same scale an x,y,z
 
shg
 
shg
 +
</nowiki>

Revision as of 14:08, 21 April 2016

Vesicle models are appropriate when particles are evenly distributed on surfaces reasonably similar to spheres or ellipsoids. The model can estimate the center and radius provided points provided by the user in the visible part of the object, or the other way round, letting the user provided center and radius.


Command line

Here come some examples of creation and manipulation of vesicle models from the command line

Given user points

Feature to be implemented or not released. Contact us if you want to test it

Given center and radius

a = dmodels.vesicle(); % creates an empty vesicle model a.radius = 70; a.center = [40,100,200]; a.separation = 15; a.updateCrop(); % here it will some time computing the particles. t=a.grepTable(); % extracts the table dtplot(t,'profile','oriented_positions'); % scatter plot of images axis equal; % for a better visualization, same scale an x,y,z shg