Color selectionColor = getSelectionColor();
Color furnitureOutlineColor = getFurnitureOutlineColor();
Paint selectionOutlinePaint = new Color(selectionColor.getRed(), selectionColor.getGreen(),
selectionColor.getBlue(), 128);
Stroke selectionOutlineStroke = new BasicStroke(6 / planScale,
BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND);
Stroke dimensionLinesSelectionOutlineStroke = new BasicStroke(4 / planScale,
BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND);
Stroke locationFeedbackStroke = new BasicStroke(
1 / planScale, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_BEVEL, 0,
new float [] {20 / planScale, 5 / planScale, 5 / planScale, 5 / planScale}, 4 / planScale);
paintCamera(g2D, selectedItems, selectionOutlinePaint, selectionOutlineStroke, selectionColor,
planScale, backgroundColor, foregroundColor);