use of maspack.render.PointEdgeRenderProps in project artisynth_core by artisynth.
the class NURBSCurveBase method createRenderProps.
/**
* {@inheritDoc}
*/
public RenderProps createRenderProps() {
RenderProps props = new PointEdgeRenderProps();
props.setDrawEdges(true);
props.setPointSize(3);
props.setLineWidth(2);
props.setLineColor(Color.WHITE);
props.setEdgeColor(Color.BLUE);
props.setPointColor(Color.GREEN);
return props;
}
Aggregations