GeometricSnapShot | Cellzilla2D Home |
Description
This requires an externally defined dynamics model.
This returns an Graphics image of time dependent tissue object, similar to ShowTissue, but where the vertex locations are replaced by the result of a dynamic simulation.
Needs["Cellzilla2D`"];
Return Value
GeometricSnapShot[tissue, solution, {x,y}, {timevariable, time}, options]
tissue is any Tissue object
solution is the output of NDSolve that contains time-dependent information about the vertex locations.
{x,y} are the names of the variables in solution that give the vertex locations. The location of vertex i must be represented by variables {x[i],y[i]} in solution.
timevariable variable that represents time in solution.
time numeric value of time to plot the solution at.
Options
Same options as ShowTissue
Example
[ Download Example as Zipped Mathematica Notebook ]
Implementation Notes
There is no dynamic model in Cellzilla2D so a user must implement one externally for this function to be useful.
See Also