Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/xerox/VTM/glyphs/ProjCirImage.java


1   /*   FILE: ProjCirImage.java
2    *   DATE OF CREATION:   Jan 09 2001
3    *   AUTHOR :            Emmanuel Pietriga (emmanuel.pietriga@xrce.xerox.com)
4    *   MODIF:              Tue Apr 02 11:25:58 2002 by Emmanuel Pietriga
5    *   Copyright (c) Xerox Corporation, XRCE/Contextual Computing, 2002. All Rights Reserved
6    *
7    * This library is free software; you can redistribute it and/or
8    * modify it under the terms of the GNU Lesser General Public
9    * License as published by the Free Software Foundation; either
10   * version 2.1 of the License, or (at your option) any later version.
11   * 
12   * This library is distributed in the hope that it will be useful,
13   * but WITHOUT ANY WARRANTY; without even the implied warranty of
14   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15   * Lesser General Public License for more details.
16   *
17   * For full terms see the file COPYING.
18   */
19  
20  package com.xerox.VTM.glyphs;
21  
22  /**project coordinates of an image (not scalable)
23   * @author Emmanuel Pietriga
24   */
25  
26  class ProjCirImage extends ProjectedCoords {
27  
28      /**half width and height in camera space - equal to coords in virtual space (not sensible to zoom)*/
29      int cw,ch;
30      /**projected size (radius of circle)*/
31      int cs;
32  
33  }