~ubuntu-branches/ubuntu/oneiric/libjlatexmath-java/oneiric

« back to all changes in this revision

Viewing changes to src/org/scilab/forge/jlatexmath/ReflectBox.java

  • Committer: Bazaar Package Importer
  • Author(s): Sylvestre Ledru
  • Date: 2009-09-29 11:14:53 UTC
  • Revision ID: james.westby@ubuntu.com-20090929111453-0pmbj5as45odpxei
Tags: upstream-0.5
ImportĀ upstreamĀ versionĀ 0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ReflectBox.java
 
2
 * =========================================================================
 
3
 * This file is part of the JLaTeXMath Library - http://forge.scilab.org/jlatexmath
 
4
 * 
 
5
 * Copyright (C) 2009 DENIZET Calixte
 
6
 * 
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 2 of the License, or (at
 
10
 * your option) any later version.
 
11
 * 
 
12
 * This program is distributed in the hope that it will be useful, but
 
13
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
 * General Public License for more details.
 
16
 * 
 
17
 * A copy of the GNU General Public License can be found in the file
 
18
 * LICENSE.txt provided with the source distribution of this program (see
 
19
 * the META-INF directory in the source jar). This license can also be
 
20
 * found on the GNU website at http://www.gnu.org/licenses/gpl.html.
 
21
 * 
 
22
 * If you did not receive a copy of the GNU General Public License along
 
23
 * with this program, contact the lead developer, or write to the Free
 
24
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
25
 * 02110-1301, USA.
 
26
 * 
 
27
 */
 
28
 
 
29
package org.scilab.forge.jlatexmath;
 
30
 
 
31
import java.awt.Graphics2D;
 
32
 
 
33
/**
 
34
 * A box representing a rotated box.
 
35
 */
 
36
public class ReflectBox extends Box {
 
37
 
 
38
    private Box box;
 
39
 
 
40
    public ReflectBox(Box b) {
 
41
        this.box = b;
 
42
        width = b.width;
 
43
        height = b.height;
 
44
        depth = b.depth;
 
45
        shift = b.shift;
 
46
    }
 
47
    
 
48
    public void draw(Graphics2D g2, float x, float y) {
 
49
        g2.translate(x, y);
 
50
        g2.scale(-1, 1);
 
51
        box.draw(g2, -width, 0);
 
52
        g2.scale(-1, 1);
 
53
        g2.translate(-x, -y);
 
54
    }
 
55
 
 
56
    public int getLastFontId() {
 
57
        return box.getLastFontId();
 
58
    }
 
59
}