Age | Commit message (Collapse) | Author |
|
|
|
* Added screenshot action that saves two images: one of the main
view (plot + splat) and one of the bottom view (bar chart)
* Added methods/signals/slots to Scatterplot for handling glyph sizes
* Added methods/signals/slots to VoronoiSplat for handling the
alpha/beta parameters, which are now also no longer fixed
* Options panel:
- glyph sizes of both CPs and RPs
- splat opacity
- splat parameters (alpha & beta)
- color scale combo box currently does nothing
|
|
|
|
|
|
* The Colormap component is a simple rect with a texture mapped
that displays a ColorScale with a fixed number of samples. This
number of samples is exported as a member const, which is used
on other components (such as VoronoiSplat).
* The texture mapping is reflecting the colormap lookup used in
VoronoiSplat.
* The ColorScale class now has a method for sampling the color
scale and outputs the samples to iterator-style objects,
providing easy intergration with existing code.
|
|
The change was due to future functionality requirements, this
separation provides grater flexibility. As a nice side effect, the
cropping bug when first rendering the splat is now gone.
|
|
|
|
|
|
|
|
|
|
* Stray OpenGL calls that did not call the gl object's methods.
|
|
|
|
different backgrounds.
|
|
|
|
This reverts commit 87292bf4cc56194aa6122456d7417fa5f9bd1a09.
|
|
|
|
|
|
|
|
|
|
* Added more cleanup code in destructor (VBOs & textures)
* Scalar values are now normalized, as was expected by the shaders
|
|
* Added voronoi-like splatting to points: the same technique from
Messias et al., (2014)
* It is now possible to change the projection technique during
runtime (possible, but still requires some work)
|