MCPcopy Create free account
hub / github.com/Nurtak/ObjectGraphVisualization / restrictedWidth

Method restrictedWidth

src/ch/hsr/ogv/view/PaneBox.java:513–522  ·  view source on GitHub ↗
(double width)

Source from the content-addressed store, hash-verified

511 }
512
513 private double restrictedWidth(double width) {
514 double retWidth = width;
515 if (width < MIN_WIDTH) {
516 retWidth = MIN_WIDTH;
517 }
518 else if (width > MAX_WIDTH) {
519 retWidth = MAX_WIDTH;
520 }
521 return retWidth;
522 }
523
524 private double restrictedHeight(double height) {
525 double retHeight = height;

Callers 3

calcMinWidthMethod · 0.95
setMinWidthMethod · 0.95
setMaxWidthMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected