I have encountered an error with plots:-pointplot. > plt:=plots:-pointplot([ [1,1],[2,2] ],color=[COLOR(HSV,1,1,1), COLOR(HSV,1/2,1,1)],style=point,symbol=solidcircle,symbolsize=15); plt := PLOT(POINTS([1., 1.], [2., 2.]), STYLE(POINT), SYMBOL(_SOLIDCIRCLE, 15),COLOR(RGB, Array(1..6, [...], datatype = float[8]))) As you see the input list is using the HSV scheme but in the output it has been switched to RGB. This of course is reflected in the actual plots. Any suggestions? I need a workaround for this that doesn't involve converting to RGB (too time consuming) and creating one plot per point is also not an option (uses too much memory). Paul Vrbk

Please Wait...