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

« back to all changes in this revision

Viewing changes to src/org/scilab/forge/jlatexmath/VdotsAtom.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
/* VdotsAtom.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
/**
 
32
 * An atom representing vdots.
 
33
 */
 
34
public class VdotsAtom extends Atom {
 
35
 
 
36
    public VdotsAtom() {
 
37
    }
 
38
    
 
39
    public Box createBox(TeXEnvironment env) {
 
40
        Box dot = new TeXFormula("\\ldotp").root.createBox(env);
 
41
        VerticalBox vb = new VerticalBox(dot, 0, TeXConstants.ALIGN_BOTTOM);
 
42
        Box b = new SpaceAtom(TeXConstants.UNIT_MU, 0, 4, 0).createBox(env);
 
43
        vb.add(b);
 
44
        vb.add(dot);
 
45
        vb.add(b);
 
46
        vb.add(dot);
 
47
        float d = vb.getDepth();
 
48
        float h = vb.getHeight(); 
 
49
        vb.setDepth(0);
 
50
        vb.setHeight(d + h);
 
51
        return vb;
 
52
    }  
 
53
}