Normand Briere
2019-09-24 767be784dc7fe293bf5c5ee6507df242526be3ed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Decompiled by Jad v1.5.7b. Copyright 1997-99 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) 
// Source File Name:   ClickInfo.java
 
import java.awt.Graphics;
import java.awt.Rectangle;
 
class ClickInfo
{
 
    ClickInfo()
    {
        bounds = new Rectangle();
        //System.out.println("CLICKINFO");
    }
 
    static final int kCamera = 1;
    static final int kShaded = 2;
    static final int kZBuffered = 4;
    int x;
    int y;
    int modifiers;
    int flags;
    Rectangle bounds;
    Camera camera;
    double[][] toScreen;
    iCameraPane pane;
    Graphics g;
    int DX, DY;
    float W = 1;
    
    double scale; // Distance from clicked point to origin
 
    static double[][] matbuffer = new double[4][4];
}