.. | .. |
---|
7102 | 7102 | spot.translate(32, 32); |
---|
7103 | 7103 | spotw = spot.x + spot.width; |
---|
7104 | 7104 | spoth = spot.y + spot.height; |
---|
7105 | | - info.g.setColor(Color.blue); |
---|
| 7105 | + info.g.setColor(Color.cyan); |
---|
7106 | 7106 | info.g.fillRect(spot.x, spot.y, spot.width, spot.height); |
---|
7107 | 7107 | // if (CameraPane.Xmin > spot.x) |
---|
7108 | 7108 | // { |
---|
.. | .. |
---|
7120 | 7120 | // { |
---|
7121 | 7121 | // CameraPane.Ymax = spoth; |
---|
7122 | 7122 | // } |
---|
7123 | | - // bonhommes info.g.drawLine(spotw, spoth, spotw, spoth - 15); |
---|
7124 | | - //info.g.drawLine(spotw, spoth, spotw - 15, spoth); |
---|
| 7123 | + // bonhommes info.g.drawLine(spotw, spoth, spotw, spoth - boundary.height/2); // 15 |
---|
| 7124 | + //info.g.drawLine(spotw, spoth, spotw - boundary.width/2, spoth); // 15 |
---|
7125 | 7125 | spot.translate(0, -32); |
---|
7126 | | - info.g.setColor(Color.green); |
---|
| 7126 | + info.g.setColor(Color.yellow); |
---|
7127 | 7127 | info.g.fillRect(spot.x, spot.y, spot.width, spot.height); |
---|
| 7128 | + info.g.setColor(Color.green); |
---|
7128 | 7129 | // if (CameraPane.Xmin > spot.x) |
---|
7129 | 7130 | // { |
---|
7130 | 7131 | // CameraPane.Xmin = spot.x; |
---|
.. | .. |
---|
7442 | 7443 | switch (info.pane.RenderCamera().viewCode) |
---|
7443 | 7444 | { |
---|
7444 | 7445 | case 3: // '\001' |
---|
7445 | | - if (modified) |
---|
| 7446 | + if (modified || opposite) |
---|
7446 | 7447 | { |
---|
7447 | 7448 | //LA.matScale(toParent, 1, hScale, vScale); |
---|
7448 | 7449 | LA.matScale(toParent, totalScale, 1, 1); |
---|
7449 | 7450 | } // vScale, 1); |
---|
7450 | 7451 | else |
---|
7451 | 7452 | { |
---|
7452 | | - LA.matScale(toParent, totalScale, totalScale, totalScale); |
---|
| 7453 | + LA.matScale(toParent, 1, totalScale, totalScale); |
---|
7453 | 7454 | } // vScale, 1); |
---|
7454 | 7455 | break; |
---|
7455 | 7456 | |
---|
7456 | 7457 | case 2: // '\002' |
---|
7457 | | - if (modified) |
---|
| 7458 | + if (modified || opposite) |
---|
7458 | 7459 | { |
---|
7459 | 7460 | //LA.matScale(toParent, hScale, 1, vScale); |
---|
7460 | 7461 | LA.matScale(toParent, 1, totalScale, 1); |
---|
.. | .. |
---|
7465 | 7466 | break; |
---|
7466 | 7467 | |
---|
7467 | 7468 | case 1: // '\003' |
---|
7468 | | - if (modified) |
---|
| 7469 | + if (modified || opposite) |
---|
7469 | 7470 | { |
---|
7470 | 7471 | //LA.matScale(toParent, hScale, vScale, 1); |
---|
7471 | 7472 | LA.matScale(toParent, 1, 1, totalScale); |
---|