Package simtools.shapes

Examples of simtools.shapes.StrokeParameters


        if(al!=null){
            for(int i=0;i<al.size();i++){
                Limit c = (Limit) al.get(i);
                LimitShape cs = c.shape;
                LimitPropertiesPanel.LimitParameters cp=new LimitPropertiesPanel.LimitParameters(c.getLabel());    
                cp.strokeParams = new StrokeParameters(c.dashParam1 ,c.dashParam2);
                cp.color=c.color;
                cp.isVertical = cs.getIsVertical();
                cp.secondaryAxis = c.secondaryAxis;
                cp.position = cs.getPosition();
                l.add(cp);
View Full Code Here


        public boolean secondaryAxis;

        public double position;

        public LimitParameters(String name) {
            strokeParams = new StrokeParameters();
            color = Color.BLACK;
            isVertical = false;
            secondaryAxis = false;
            this.name = name;
            position = 0.0;
View Full Code Here

TOP

Related Classes of simtools.shapes.StrokeParameters

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.