472473474475476477478
* @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)); }
55565758596061
* * @param size * @return */ public Line height(double size, Unit unit) { return height(new Numeric(size, unit)); }