Package org.rascalmpl.library.vis.figure.combine.containers

Examples of org.rascalmpl.library.vis.figure.combine.containers.Ellipse


      PropertyValue<Boolean> recomp = Properties.produceMaybeComputedValue(Types.BOOL,c.get(0),properties,env);
      return new ComputeFigure(env, properties,  recomp, c.get(1), childPropsNext);
     
 
    case ELLIPSE:
      return new Ellipse( makeChild(env,c,properties,childPropsNext), properties );
         
    case FIGURESWITCH:
      PropertyValue<Integer> choice = Properties.produceMaybeComputedValue(Types.INT,c.get(0),properties,env);
      children = makeList(env,c.get(1),properties,childPropsNext);
      return new FigureSwitch(choice, children, properties);
View Full Code Here

TOP

Related Classes of org.rascalmpl.library.vis.figure.combine.containers.Ellipse

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.