Mercurial > repos > public > sbplib
view Color.m @ 103:bc5db54f9efd feature/arclen-param
fzero_vec, integral_vec and spline are now local functions in Curve. Renamed arcLengthStretch to arcLengthParametrization. Removed plot_derivative. Added some comments and extra lines + removed unneccesary lines. arcLength is now a method and not static. Constructor does not accept difference operator anymore.
author | Martin Almquist <martin.almquist@it.uu.se> |
---|---|
date | Mon, 07 Dec 2015 17:24:28 +0100 |
parents | 1770689d6c31 |
children | 54cf593d6643 |
line wrap: on
line source
classdef Color properties(Constant) blue = [0.000 0.447 0.741]; red = [0.850 0.325 0.098]; yellow = [0.929 0.694 0.125]; purple = [0.494 0.184 0.556]; green = [0.466 0.674 0.188]; lightblue = [0.301 0.745 0.933]; darkred = [0.635 0.078 0.184]; black = [0.000 0.000 0.000]; white = [1.000 1.000 1.000]; end end