Package ca.eandb.jmist.framework.loader.openexr.attribute

Examples of ca.eandb.jmist.framework.loader.openexr.attribute.FloatAttribute


    attributes.put("channels", new ChannelList());
    attributes.put("compression", CompressionMethod.NONE);
    attributes.put("dataWindow", dataWindow);
    attributes.put("displayWindow", displayWindow);
    attributes.put("lineOrder", LineOrder.INCREASING_Y);
    attributes.put("pixelAspectRatio", new FloatAttribute(1.0f));
    attributes.put("screenWindowCenter", new V2f(0.0f, 0.0f));
    attributes.put("screenWindowWidth", new FloatAttribute(1.0f));
  }
View Full Code Here


  public float getPixelAspectRatio() {
    return ((FloatAttribute) attributes.get("pixelAspectRatio")).getValue();
  }

  public void setPixelAspectRatio(float value) {
    attributes.put("pixelAspectRatio", new FloatAttribute(value));
  }
View Full Code Here

  public float getScreenWindowWidth() {
    return ((FloatAttribute) attributes.get("screenWindowWidth")).getValue();
  }

  public void setScreenWindowWidth(float value) {
    attributes.put("screenWindowWidth", new FloatAttribute(value));
  }
View Full Code Here

TOP

Related Classes of ca.eandb.jmist.framework.loader.openexr.attribute.FloatAttribute

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.