Package org.rascalmpl.library.vis.figure.compose

Examples of org.rascalmpl.library.vis.figure.compose.Overlay


      return new Outline( properties, (IList)c.get(0), ((IInteger) c.get(1)).intValue());
   
 
    case OVERLAY:
      children = makeList(env,c.get(0),properties,childPropsNext);
      return new Overlay( children, properties);
     
    case OVERLAP:
       Figure under = makeChild(0,env,c,properties,childPropsNext);
       Figure over =  makeChild(1,env,c,properties,childPropsNext);
       return new Overlap(under, over, properties);
View Full Code Here

TOP

Related Classes of org.rascalmpl.library.vis.figure.compose.Overlay

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.