final double height, final double angle, final ObjectProperty<Paint> tickMarkFillProperty) {
final Rectangle tm = new Rectangle(x, y, width, height);
tm.setSmooth(false);
tm.setCache(true);
tm.setCacheHint(CacheHint.QUALITY);
Bindings.bindBidirectional(tm.fillProperty(), tickMarkFillProperty);
tm.getTransforms().addAll(new Rotate(angle, centerX, centerY));
return tm;
}
/**