Package jsx.style.value

Examples of jsx.style.value.Numeric


     * @param size The z-component of the translating vector.
     * @param unit The unit of the translating vector.
     * @return Chainable API.
     */
    public Transform translateZ(double size, Unit unit) {
        return translateZ(new Numeric(size, unit));
    }
View Full Code Here


     *
     * @param size
     * @return
     */
    public Line height(double size, Unit unit) {
        return height(new Numeric(size, unit));
    }
View Full Code Here

TOP

Related Classes of jsx.style.value.Numeric

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.