Getting Started | Documentation | Glish | Learn More | Programming | Contact Us |
Version 1.9 Build 1488 |
|
Package | general | |
Module | images | |
Tool | imageprofilesupport |
plotter | in | New plotter | |
Allowed: | Pgplotter tool |
This function allows you to set a plotter with one of your own creation. It must be a pgplotter tool.
After calling this function, you must remake the abcissa and ordinate profiles (functions makeabcissa and makeordinate or setordinate).
- im := image('ngc1313.cube') - csys := im.coordsys() - shp := im.shape() - axis := 3; - p := imageprofilesupport(csys=csys, shp=shp) - p.setprofileaxis(axis); - p.makemenus() - pos := csys.referencepixel() - p.makeabcissa(pos) - r := drm.box() - p.makeordinate(im, r) - p.plot() - - pl := pgplotter() - p.setplotter(pl) - p.makemenus() - p.makeabcissa([1,1]) - p.setordinate(data2) - p.plot()