Class for making a Shape window useful for coloring a shape according to a variable value and creating time and space graphs of a variable. The default variable is v. The first arg may be a SectionList.
Description: Range variable (v, m_hh, etc.) to be used for time, space, and shape plots.
See also
See also
See also
s.colormap(size, [global = 0])
s.colormap(index, red, green, blue)
If the optional global argument is 1 then these functions refer to the global (default) Colormap and a change will affect all PlotShape instances that use it. Otherwise these function create a colormap that is local to this PlotShape.
With a single argument, destroys the old and creates a new colormap for shape plots with space for size colors. All colors are initialized to gray.
The four argument syntax, specifies the color of the index element of the colormap. the red, green, and blue must be integers within the range 0-255 and specify the intensity of these colors.
If an existing colormap is displayed in the view, it will be redrawn with the proper colors when PlotShape.scale() is called.
s.hinton(_ref_varname, x, y, size)
s.hinton(_ref_varname, x, y, xsize, ysize)
A filled square or rectangle is drawn with center at (x, y) and edge length given by size. The color depends on the PlotShape.colormap() and PlotShape.scale() and is redrawn on PlotShape.flush().
If there are many of these elements then PlotShape.fastflush() can speed plotting by up to a factor of 4 if not too many elements change color between fastflush calls.
Example:
from neuron import h, gui soma = h.Section() sl = h.SectionList() s = h.PlotShape(sl) s.colormap(3) s.colormap(0, 255, 0, 0) s.colormap(1, 255, 255, 0) s.colormap(2, 200, 200, 200) s.scale(0, 2) nx = 30 ny = 30 vec = h.Vector(nx*ny) vec.fill(0) for i in range(nx): for j in range(ny): s.hinton(vec._ref_x[i*ny + j], float(i)/nx, float(j)/ny, 1./nx) s.size(-.5, 1, 0, 1) s.exec_menu("Shape Plot") r = h.Random() r.poisson(.01) h.doNotify() def p(): for i in range(1,1001): vec.setrand(r) s.fastflush() # faster by up to a factor of 4 h.doNotify() h.startsw() p() print h.stopsw()
shape.rotate()
shape.rotate(xorg, yorg, zorg, xrad, yrad, zrad)