Package org.osm2world.core.target.common.TextureData

Examples of org.osm2world.core.target.common.TextureData.Wrap


              double width = config.getDouble(widthKey, 1);
              double height = config.getDouble(heightKey, 1);
              boolean colorable = config.getBoolean(colorableKey, false);
             
              String wrapString = config.getString(wrapKey);
              Wrap wrap = Wrap.REPEAT;
              if ("clamp_to_border".equalsIgnoreCase(wrapString)) {
                wrap = Wrap.CLAMP_TO_BORDER;
              } else if ("clamp".equalsIgnoreCase(wrapString)) {
                wrap = Wrap.CLAMP;
              }
View Full Code Here

TOP

Related Classes of org.osm2world.core.target.common.TextureData.Wrap

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.