return new BasicCalculator(createCalculatorName(style, pType), map, pType);
}
public static Calculator createNodeHeightCalculator(CustomStyle style){
VisualPropertyType pType = VisualPropertyType.NODE_HEIGHT;
PassThroughMapping map = new PassThroughMapping(Double.class, NetworkLayout.ATT_LAYOUT_HEIGHT);
return new BasicCalculator(createCalculatorName(style, pType), map, pType);
}