Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | added some temporary fields to interp. Will be replaced by Tcl commands later. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
3f603ae81953365fea5ec23d793d2e07 |
| User & Date: | arnulf 2014-02-12 21:15:44.131 |
Context
|
2014-02-23
| ||
| 10:05 | added fields to Interp. check-in: b5d91aa705 user: arnulf tags: trunk | |
|
2014-02-12
| ||
| 21:15 | added some temporary fields to interp. Will be replaced by Tcl commands later. check-in: 3f603ae819 user: arnulf tags: trunk | |
|
2014-02-09
| ||
| 21:29 | fixes for java null pointer exceptions. check-in: feccf5df40 user: arnulf tags: trunk | |
Changes
Changes to src/org/apwtcl/lang/Interp.java.
| ︙ | ︙ | |||
141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
public ApwtclObj xhdr_object;
public String start_dir;
public String current_dir;
public ApwtclObj current_script_obj;
public HashMap<String, ItclMacro> macros;
public ItclMacro curr_macro;
public Command expand_macro_cmd;
/* ==================== Interp ================================== */
public Interp(Context context) {
++interp_count;
id = interp_count;
this.context = context;
| > > > > > > | 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
public ApwtclObj xhdr_object;
public String start_dir;
public String current_dir;
public ApwtclObj current_script_obj;
public HashMap<String, ItclMacro> macros;
public ItclMacro curr_macro;
public Command expand_macro_cmd;
public float[] curr_color;
public int surfaceWidth;
public int surfaceHeight;
public float xAngle = 0.0f;
public float yAngle = 0.0f;
public float zAngle = 0.0f;
/* ==================== Interp ================================== */
public Interp(Context context) {
++interp_count;
id = interp_count;
this.context = context;
|
| ︙ | ︙ |