Changelog

  • 2019-04-28
    • Added Math.round to the dot() drawing parameters to really draw a singlt dot.
    • Added the preClear callback param (called before the canvas was cleared on redraw and before any elements are drawn).
    • Fixed a bug in the Line.sub( Vertex ) function (was not working).
  • 2019-04-27
    • Fixed a severe drawing bug in the arrow(…) function. Scaling arrows did not work properly.
    • Changed the vectorfield demo to a more beautiful one.
    • Watched the ending of star trek discovery when doing that.
  • 2019-04-24
    • Added the Vertex.randomVertex(ViewPort) fuction.
    • Added the VertexAnimator for demos.
  • 2019-04-17
    • Added the PlotBoilerplate.removeVertex(Vertex,boolean) function.
  • 2019-04-16
    • Added the PlotboilerPlate.remove(drawable) function.
    • Added the draw.cubicBezierPath(path,color) function.
    • Added the Voronoi and Delaunay demo.
  • 2019-04-12
    • Added the PlotBoilerplate.drawConfig with ‘drawVerices’ attribute.
    • Extended the gui a bit.
  • 2019-04-11
    • Added the ‘drawGrid’ config param.
    • Added the simple animation demo.
    • Added the PlotBoilerplate.viewport() function.
  • 2019-04-07
    • Re-styled the website, optimized the css, merged jekyll-css with jsdoc-css.
  • 2019-04-03
    • Fixed wrong positioning on touch devices when canvas is not located at (0,0). Touch-drag is now working.
    • Tweaked the fit-to-parent function. This is now working and respecting paddings and borders.
    • Added a fix for Touchy.js: e.preventDefault() to avoid window scrolling during element drag (touch-move).
  • 2019-03-28
    • Mouse wheel zoom now calls e.preventDefault().
    • Added the unminified-webpack-plugin.
    • Removed the overlay-dialog from the plot-boilerplate as it was not used at all.
  • 2019-03-27
    • Renamed the repository from plot-boilerplate to plotboilerplate.
  • 2019-03-25
    • Moved the collection demo scripts to demo/.
  • 2019-03-23
    • Added more JSDoc code.
    • Changed the default value of config param ‘drawOrigin’ to false.
    • Swapped the BezierPath.getPoint and getPointAt to match the semantics with linear interpolation in the Line class. This makes the class incompatible with older versions! Thus: BezierPath version 2.0.
  • 2019-03-20
    • Added JSDoc inline documentation for these classes: Vertex, Line, Vector, VertexAttr, VertexListeners, Polygon.
  • 2019-02-23
    • Removed the ‘rebuild’ function as it had no purpose.
    • Added scaling of the click-/touch-tolerance with the CSS scale.
    • Added the helper function PlotBoilerplate.utils.buildArrowHead(Vertex,Vertex,Number,Number,Number).
    • Added the Vector.toSVGString function, overriding Line.toSVGString.
    • Tweaked the initial vector field demo a little bit (it’s really fancy now but still not yet finished).
  • 2019-02-20
    • Removed the ‘loadFile’ entry from the GUI as it was experimental and never in use.
  • 2019-02-19
    • Added the Vertex.difference(Vertex) function.
    • Put the TouchHandler back because it is badly coded and rubbish. Used Touchy.js instead.
    • Added two new constants: DEFAULT_CLICK_TOLERANCE and DEFAULT_TOUCH_TOLERANCE. Touch devices have larger tolerance now.
    • Added the second param to the locatePointNear(Vertex,Number) function.
  • 2019-02-14
    • Added the console for debugging (setConsole(object)).
  • 2019-02-10
    • Fixed a draggable-bug in PBImage handling (scaling was not possible).
    • Added the ‘enableTouch’ option (default is true).
  • 2019-02-06
    • Vertices (instace of Vertex) can now be added using PlotBoilerplate.add(Object).
    • Added the ‘draggable’ attribute to the vertex attributes.
    • Added the point-to-line distance demo.
  • 2019-02-03
    • Removed the drawBackgroundImage() function, with had no purpose at all. Just add an image to the drawables-list.
  • 2019-02-02
    • Added the ‘canvasWidthFactor’ and ‘canvasHeightFactor’ params.
  • 2019-01-30
    • Fixed the offsetAdjustXPercent and offsetAdjustYPercent bug. They are working properly now.
    • Added the Vector class (subclass of Line).
    • Added the draw.arrow(Vertex,Vertex,color) function for drawing arrow heads.
    • Added the Vertex.setX(Number) and Vertex.setY(Number) functions.
    • Added the PBImage type.
    • Added image rendering.
  • 2019-01-14
    • Added params ‘drawBezierHandleLines’ and ‘drawBezierHandlePoints’.
    • Added the ‘redraw’ param to the add() function.
  • 2018-12-30
    • Added the PlotBoilerplate.RectSelector helper for selecting sub areas of the current plot without interfering with the current plot progress.
  • 2018-12-29
    • Renamed the ‘autoCenterOffset’ param to ‘autoAdjustOffset’.
    • Added the params ‘offsetAdjustXPercent’ and ‘offsetAdjustYPercent’.
  • 2018-12-29
    • Fixed a bug in the Feigenbaum demo: y was plotted inverted.
  • 2018-12-28
    • Removed the unused ‘drawLabel’ param.
    • Added the ‘enableMouse’ and ‘enableKeys’ params.
  • 2018-12-21
    • Added the Vertex.inv() function.
    • Fixed the grid offset problem. Grid is now always drawn in visible center.
    • Logarithmic reduction of the grid is now working.
    • Added a small test case for balanced binary search trees.
    • Refactored the redraw() function into several sub-functions for drawing several elements.
  • 2018-12-20
    • Fixed a bug in the location-transformation (did not consider the CSS scale yet).
  • 2018-12-19
    • Added cssScaling for the canvas. This allows other resolutions than 1:1.
  • 2018-12-18
    • Added the config.redrawOnResize param.
    • Added the config.defaultCanvasWidth and config.defaultCanvasHeight params.
    • Fixed the action bugs for the default overlay buttons (OK and cancel had no action assigned).
    • Added a default function for creating a dat.gui interface.
  • 2018-12-09
    • Minimal zoom is now 0.01.
    • Added Grid.utils.baseLog(Nnumber,Number) and Grid.utils.mapRasterScale(Number,Number).
    • Bézier control points are not selectable any more.
    • Basic SVG export works now.
    • Added toSVGString to VEllipse class.
    • Added to SVGString to Polygon class.
    • Added a Line class.
    • Changed Bézier control points rendering.
    • Added a demo plot: main-feigenbaum.html.
  • 2018-12-06
    • Changed the CTRL key to the ALT key (for panning).
    • Fixed a translate an scale issue in the SVG builder.
    • The constructor’s config-param is in use now.
  • 2018-12-05
    • Added the Vertex.sub(x,y) function.
    • Added the Line class.
    • Moved the demo code (Line, Polygon, Bezier, Circle) to the index.js file.
    • Expanded the Vertex.add(…) function. Now add(number,number) and add(Vertex) are allowed.
  • 2018-12-04
    • Added a simple SVGBuilder.
  • 2018-11-30
    • Added the mouse position display.
  • 2018-11-28
    • Extended the VertexAttr class (extended the event params by the affected vertex).
    • Added BezierPath.locateCurveBy*Point(Vertex) functions.
    • Added the mousewheel listener to the MouseHandler.
    • Added mousewheel zoom.
    • Added the VEllipse (vertex-ellipse) class and ellipse drawing.
    • Added the Grid class.
    • Added the grid() function to the draw class.
  • 2018-11-27
    • Added an attribute model to the VertexAttr class.
    • Changing bezier path points with holding down ‘y’+click is now possible (bezier-autoadjust).
    • Added a new function to the draw class: diamondHandle.
  • 2018-11-20
    • Bézier curve does now auto adjust when dragging path points and control points.
    • BezierPath implementation now support circular paths.
    • Fixed some issues in the dat.gui interface configuration. Axis independent scaling works now.
  • 2018-11-19
    • Re-animated the CubicBezierCurve class and the BezierPath class.
    • Added multi-select and multi-drag option.
    • Made elements selectable (with holding SHIFT).
    • Added panning (move the canvas origin by pressing CTRL and drag).
    • Implemented zoom into dat.gui interface.
  • 2018-11-17
    • Added the Polygon class.
    • Added npm/webpack for compiling and code minification.
  • 2018-11-11
    • Added a simple KeyHandler for receiving key events.
  • 2018-11-10
    • Renamed the js/ direcotory to src/.
  • 2018-11-09
    • Refactored the main script to a class.
  • 2018-10-31
    • Added the Vertex class from an older project.
    • Added the VertexAttr class (not yet in use).
    • Added the VertexListeners class (not yet in use).
    • Added the MouseListener from an older project.
    • Can drag vertices around now.
  • 2018-10-23
    • Init.