Przeglądaj źródła

Beauty fixes...

Thomas Buck 12 lat temu
rodzic
commit
d0b62a5212

+ 7
- 2
Cube Control/Frame.java Wyświetl plik

339
     frameLengthText.setFont(new Font("Dialog", Font.PLAIN, 13));
339
     frameLengthText.setFont(new Font("Dialog", Font.PLAIN, 13));
340
     cp.add(frameLengthText);
340
     cp.add(frameLengthText);
341
 
341
 
342
-  frameDuration.setBounds(590, 184, 50, 24);
342
+  frameDuration.setBounds(590, 184, 60, 24);
343
   frameDuration.setText("OK");
343
   frameDuration.setText("OK");
344
   frameDuration.setFont(new Font("Dialog", Font.PLAIN, 13));
344
   frameDuration.setFont(new Font("Dialog", Font.PLAIN, 13));
345
   cp.add(frameDuration);
345
   cp.add(frameDuration);
815
       System.out.println(HelperUtility.runHelper(arr));
815
       System.out.println(HelperUtility.runHelper(arr));
816
     }
816
     }
817
 
817
 
818
+	if (s.equals("r") || s.equals("reset")) {
819
+		l.resetView();
820
+	}
821
+
818
       if (s.equals("h") || (s.equals("help"))) {
822
       if (s.equals("h") || (s.equals("help"))) {
819
         System.out.println("Commands:");
823
         System.out.println("Commands:");
820
         System.out.println("\t'on'     / '1'\t:\tToggle all LEDs on");
824
         System.out.println("\t'on'     / '1'\t:\tToggle all LEDs on");
821
         System.out.println("\t'off'    / '0'\t:\tToggle all LEDs off");
825
         System.out.println("\t'off'    / '0'\t:\tToggle all LEDs off");
822
         System.out.println("\t'print'  / 'p'\t:\tPrint 3D Translation Matrix Data");
826
         System.out.println("\t'print'  / 'p'\t:\tPrint 3D Translation Matrix Data");
823
-    System.out.println("\t'exec'   / 'e'\t:\tExecute helper with given args");
827
+		System.out.println("\t'exec'   / 'e'\t:\tExecute helper with given args");
828
+		System.out.println("\t'reset'  / 'r'\t:\tReset rotation of cube");
824
         System.out.println("\t'help'   / 'h'\t:\tShow this message");
829
         System.out.println("\t'help'   / 'h'\t:\tShow this message");
825
         System.out.println("\t'quit'   / 'q'\t:\tExit Cube Control");
830
         System.out.println("\t'quit'   / 'q'\t:\tExit Cube Control");
826
       }
831
       }

+ 15
- 2
Cube Control/Led3D.java Wyświetl plik

112
           transGroup.addChild(tg);
112
           transGroup.addChild(tg);
113
 
113
 
114
 		  drawLedFeetVertical((double)x, y + 0.5, (double)z, 0.9f, 0.01f);
114
 		  drawLedFeetVertical((double)x, y + 0.5, (double)z, 0.9f, 0.01f);
115
-		  drawLedFeetHorizontal(x + 0.5, (double)y, (double)z, 0.9f, 0.01f, 0);
116
-
115
+		  if (x < 7)
116
+			  drawLedFeetHorizontal(x + 0.5, (double)y, (double)z, 0.9f, 0.01f, 0);
117
         }
117
         }
118
       }
118
       }
119
 	  // 8 times, use x as y
119
 	  // 8 times, use x as y
171
 	}
171
 	}
172
 
172
 
173
 	/**
173
 	/**
174
+	 * Rotate the cube back to its initial position.
175
+	 */
176
+	public void resetView() {
177
+		Matrix4d mat = new Matrix4d();
178
+		mat.setRow(0, 0.744, 0.0237, -0.66756, -0.34);
179
+		mat.setRow(1, 0.136, -0.9837, 0.117, 3.24);
180
+		mat.setRow(2, -0.6536, -0.1785, -0.735, -8.32);
181
+		mat.setRow(3, 0.0, 0.0, 0.0, 1.0);
182
+		trans3D.set(mat);
183
+		transGroup.setTransform(trans3D);
184
+	}
185
+
186
+	/**
174
 	 * Prints the translation matrix that is changed by moving/rotating the 3D Cube with your mouse.
187
 	 * Prints the translation matrix that is changed by moving/rotating the 3D Cube with your mouse.
175
 	 */
188
 	 */
176
   	public void printTranslationData() {
189
   	public void printTranslationData() {

BIN
Cube Control/bg.png Wyświetl plik


+ 2
- 2
Cube Control/doc/AFrame.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:14 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:07 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 AFrame
7
 AFrame
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 

+ 2
- 2
Cube Control/doc/Animation.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:14 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:07 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 Animation
7
 Animation
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 

+ 2
- 2
Cube Control/doc/AnimationUtility.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:14 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:07 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 AnimationUtility
7
 AnimationUtility
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 

+ 2
- 2
Cube Control/doc/HelperUtility.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:15 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:08 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 HelperUtility
7
 HelperUtility
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 

+ 23
- 2
Cube Control/doc/Led3D.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:15 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:08 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 Led3D
7
 Led3D
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 
139
 <TR BGCOLOR="white" CLASS="TableRowColor">
139
 <TR BGCOLOR="white" CLASS="TableRowColor">
140
 <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
140
 <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
141
 <CODE>&nbsp;void</CODE></FONT></TD>
141
 <CODE>&nbsp;void</CODE></FONT></TD>
142
+<TD><CODE><B><A HREF="Led3D.html#resetView()">resetView</A></B>()</CODE>
143
+
144
+<BR>
145
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Rotate the cube back to its initial position.</TD>
146
+</TR>
147
+<TR BGCOLOR="white" CLASS="TableRowColor">
148
+<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
149
+<CODE>&nbsp;void</CODE></FONT></TD>
142
 <TD><CODE><B><A HREF="Led3D.html#setData(short[])">setData</A></B>(short[]&nbsp;data)</CODE>
150
 <TD><CODE><B><A HREF="Led3D.html#setData(short[])">setData</A></B>(short[]&nbsp;data)</CODE>
143
 
151
 
144
 <BR>
152
 <BR>
186
 </TR>
194
 </TR>
187
 </TABLE>
195
 </TABLE>
188
 
196
 
197
+<A NAME="resetView()"><!-- --></A><H3>
198
+resetView</H3>
199
+<PRE>
200
+public void <B>resetView</B>()</PRE>
201
+<DL>
202
+<DD>Rotate the cube back to its initial position.
203
+<P>
204
+<DD><DL>
205
+</DL>
206
+</DD>
207
+</DL>
208
+<HR>
209
+
189
 <A NAME="printTranslationData()"><!-- --></A><H3>
210
 <A NAME="printTranslationData()"><!-- --></A><H3>
190
 printTranslationData</H3>
211
 printTranslationData</H3>
191
 <PRE>
212
 <PRE>

+ 2
- 2
Cube Control/doc/allclasses-frame.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:15 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:09 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 All Classes
7
 All Classes
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 

+ 2
- 2
Cube Control/doc/allclasses-noframe.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:15 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:09 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 All Classes
7
 All Classes
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 

+ 2
- 2
Cube Control/doc/constant-values.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:15 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:08 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 Constant Field Values
7
 Constant Field Values
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 

+ 2
- 2
Cube Control/doc/cubeWorker.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:14 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:07 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 cubeWorker
7
 cubeWorker
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 

+ 2
- 2
Cube Control/doc/deprecated-list.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:15 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:09 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 Deprecated List
7
 Deprecated List
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 

+ 4
- 4
Cube Control/doc/frame.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:14 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:07 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 Frame
7
 Frame
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 
480
 <TH ALIGN="left"><B>Methods inherited from class java.awt.Window</B></TH>
480
 <TH ALIGN="left"><B>Methods inherited from class java.awt.Window</B></TH>
481
 </TR>
481
 </TR>
482
 <TR BGCOLOR="white" CLASS="TableRowColor">
482
 <TR BGCOLOR="white" CLASS="TableRowColor">
483
-<TD><CODE>addPropertyChangeListener, addPropertyChangeListener, addWindowFocusListener, addWindowListener, addWindowStateListener, applyResourceBundle, applyResourceBundle, createBufferStrategy, createBufferStrategy, dispose, getBufferStrategy, getFocusableWindowState, getFocusCycleRootAncestor, getFocusOwner, getFocusTraversalKeys, getGraphicsConfiguration, getIconImages, getInputContext, getListeners, getLocale, getModalExclusionType, getMostRecentFocusOwner, getOwnedWindows, getOwner, getOwnerlessWindows, getToolkit, getWarningString, getWindowFocusListeners, getWindowListeners, getWindows, getWindowStateListeners, hide, isActive, isAlwaysOnTop, isAlwaysOnTopSupported, isFocusableWindow, isFocusCycleRoot, isFocused, isLocationByPlatform, isShowing, pack, paint, postEvent, processEvent, processWindowFocusEvent, processWindowStateEvent, removeWindowFocusListener, removeWindowListener, removeWindowStateListener, reshape, setAlwaysOnTop, setBounds, setBounds, setCursor, setFocusableWindowState, setFocusCycleRoot, setIconImages, setLocationByPlatform, setLocationRelativeTo, setMinimumSize, setModalExclusionType, setSize, setSize, setVisible, show, toBack, toFront</CODE></TD>
483
+<TD><CODE>addPropertyChangeListener, addPropertyChangeListener, addWindowFocusListener, addWindowListener, addWindowStateListener, applyResourceBundle, applyResourceBundle, createBufferStrategy, createBufferStrategy, dispose, getBufferStrategy, getFocusableWindowState, getFocusCycleRootAncestor, getFocusOwner, getFocusTraversalKeys, getGraphicsConfiguration, getIconImages, getInputContext, getListeners, getLocale, getModalExclusionType, getMostRecentFocusOwner, getOwnedWindows, getOwner, getOwnerlessWindows, getToolkit, getWarningString, getWindowFocusListeners, getWindowListeners, getWindows, getWindowStateListeners, hide, isActive, isAlwaysOnTop, isAlwaysOnTopSupported, isFocusableWindow, isFocusCycleRoot, isFocused, isLocationByPlatform, isShowing, pack, postEvent, processEvent, processWindowFocusEvent, processWindowStateEvent, removeWindowFocusListener, removeWindowListener, removeWindowStateListener, reshape, setAlwaysOnTop, setBounds, setBounds, setCursor, setFocusableWindowState, setFocusCycleRoot, setIconImages, setLocationByPlatform, setLocationRelativeTo, setMinimumSize, setModalExclusionType, setSize, setSize, setVisible, show, toBack, toFront</CODE></TD>
484
 </TR>
484
 </TR>
485
 </TABLE>
485
 </TABLE>
486
 &nbsp;<A NAME="methods_inherited_from_class_java.awt.Container"><!-- --></A>
486
 &nbsp;<A NAME="methods_inherited_from_class_java.awt.Container"><!-- --></A>
489
 <TH ALIGN="left"><B>Methods inherited from class java.awt.Container</B></TH>
489
 <TH ALIGN="left"><B>Methods inherited from class java.awt.Container</B></TH>
490
 </TR>
490
 </TR>
491
 <TR BGCOLOR="white" CLASS="TableRowColor">
491
 <TR BGCOLOR="white" CLASS="TableRowColor">
492
-<TD><CODE>add, add, add, add, add, addContainerListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getAlignmentX, getAlignmentY, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalPolicy, getInsets, getLayout, getMaximumSize, getMinimumSize, getMousePosition, getPreferredSize, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, print, printComponents, processContainerEvent, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusTraversalKeys, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setFont, transferFocusBackward, transferFocusDownCycle, validate, validateTree</CODE></TD>
492
+<TD><CODE>add, add, add, add, add, addContainerListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getAlignmentX, getAlignmentY, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalPolicy, getInsets, getLayout, getMaximumSize, getMinimumSize, getMousePosition, getPreferredSize, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paint, paintComponents, preferredSize, print, printComponents, processContainerEvent, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusTraversalKeys, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setFont, transferFocusBackward, transferFocusDownCycle, validate, validateTree</CODE></TD>
493
 </TR>
493
 </TR>
494
 </TABLE>
494
 </TABLE>
495
 &nbsp;<A NAME="methods_inherited_from_class_java.awt.Component"><!-- --></A>
495
 &nbsp;<A NAME="methods_inherited_from_class_java.awt.Component"><!-- --></A>

+ 2
- 2
Cube Control/doc/help-doc.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:15 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:09 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 API Help
7
 API Help
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 

+ 5
- 2
Cube Control/doc/index-all.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:15 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:09 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 Index
7
 Index
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="./stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="./stylesheet.css" TITLE="Style">
13
 
13
 
323
 <DT><A HREF="./cubeWorker.html#removeFrame(int, int)"><B>removeFrame(int, int)</B></A> - 
323
 <DT><A HREF="./cubeWorker.html#removeFrame(int, int)"><B>removeFrame(int, int)</B></A> - 
324
 Method in class <A HREF="./cubeWorker.html" title="class in &lt;Unnamed&gt;">cubeWorker</A>
324
 Method in class <A HREF="./cubeWorker.html" title="class in &lt;Unnamed&gt;">cubeWorker</A>
325
 <DD>Remove a frame.
325
 <DD>Remove a frame.
326
+<DT><A HREF="./Led3D.html#resetView()"><B>resetView()</B></A> - 
327
+Method in class <A HREF="./Led3D.html" title="class in &lt;Unnamed&gt;">Led3D</A>
328
+<DD>Rotate the cube back to its initial position.
326
 <DT><A HREF="./HelperUtility.html#runHelper(java.lang.String[])"><B>runHelper(String[])</B></A> - 
329
 <DT><A HREF="./HelperUtility.html#runHelper(java.lang.String[])"><B>runHelper(String[])</B></A> - 
327
 Static method in class <A HREF="./HelperUtility.html" title="class in &lt;Unnamed&gt;">HelperUtility</A>
330
 Static method in class <A HREF="./HelperUtility.html" title="class in &lt;Unnamed&gt;">HelperUtility</A>
328
 <DD>Run the serialHelper with the given arguments
331
 <DD>Run the serialHelper with the given arguments

+ 1
- 1
Cube Control/doc/index.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc on Wed Dec 07 17:50:15 CET 2011-->
5
+<!-- Generated by javadoc on Mon Dec 12 09:47:09 GMT+01:00 2011-->
6
 <TITLE>
6
 <TITLE>
7
 Generated Documentation (Untitled)
7
 Generated Documentation (Untitled)
8
 </TITLE>
8
 </TITLE>

+ 4
- 4
Cube Control/doc/layerEditFrame.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:15 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:08 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 layerEditFrame
7
 layerEditFrame
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 
313
 <TH ALIGN="left"><B>Methods inherited from class java.awt.Window</B></TH>
313
 <TH ALIGN="left"><B>Methods inherited from class java.awt.Window</B></TH>
314
 </TR>
314
 </TR>
315
 <TR BGCOLOR="white" CLASS="TableRowColor">
315
 <TR BGCOLOR="white" CLASS="TableRowColor">
316
-<TD><CODE>addPropertyChangeListener, addPropertyChangeListener, addWindowFocusListener, addWindowListener, addWindowStateListener, applyResourceBundle, applyResourceBundle, createBufferStrategy, createBufferStrategy, dispose, getBufferStrategy, getFocusableWindowState, getFocusCycleRootAncestor, getFocusOwner, getFocusTraversalKeys, getGraphicsConfiguration, getIconImages, getInputContext, getListeners, getLocale, getModalExclusionType, getMostRecentFocusOwner, getOwnedWindows, getOwner, getOwnerlessWindows, getToolkit, getWarningString, getWindowFocusListeners, getWindowListeners, getWindows, getWindowStateListeners, hide, isActive, isAlwaysOnTop, isAlwaysOnTopSupported, isFocusableWindow, isFocusCycleRoot, isFocused, isLocationByPlatform, isShowing, pack, paint, postEvent, processEvent, processWindowFocusEvent, processWindowStateEvent, removeWindowFocusListener, removeWindowListener, removeWindowStateListener, reshape, setAlwaysOnTop, setBounds, setBounds, setCursor, setFocusableWindowState, setFocusCycleRoot, setIconImages, setLocationByPlatform, setLocationRelativeTo, setMinimumSize, setModalExclusionType, setSize, setSize, setVisible, show, toBack, toFront</CODE></TD>
316
+<TD><CODE>addPropertyChangeListener, addPropertyChangeListener, addWindowFocusListener, addWindowListener, addWindowStateListener, applyResourceBundle, applyResourceBundle, createBufferStrategy, createBufferStrategy, dispose, getBufferStrategy, getFocusableWindowState, getFocusCycleRootAncestor, getFocusOwner, getFocusTraversalKeys, getGraphicsConfiguration, getIconImages, getInputContext, getListeners, getLocale, getModalExclusionType, getMostRecentFocusOwner, getOwnedWindows, getOwner, getOwnerlessWindows, getToolkit, getWarningString, getWindowFocusListeners, getWindowListeners, getWindows, getWindowStateListeners, hide, isActive, isAlwaysOnTop, isAlwaysOnTopSupported, isFocusableWindow, isFocusCycleRoot, isFocused, isLocationByPlatform, isShowing, pack, postEvent, processEvent, processWindowFocusEvent, processWindowStateEvent, removeWindowFocusListener, removeWindowListener, removeWindowStateListener, reshape, setAlwaysOnTop, setBounds, setBounds, setCursor, setFocusableWindowState, setFocusCycleRoot, setIconImages, setLocationByPlatform, setLocationRelativeTo, setMinimumSize, setModalExclusionType, setSize, setSize, setVisible, show, toBack, toFront</CODE></TD>
317
 </TR>
317
 </TR>
318
 </TABLE>
318
 </TABLE>
319
 &nbsp;<A NAME="methods_inherited_from_class_java.awt.Container"><!-- --></A>
319
 &nbsp;<A NAME="methods_inherited_from_class_java.awt.Container"><!-- --></A>
322
 <TH ALIGN="left"><B>Methods inherited from class java.awt.Container</B></TH>
322
 <TH ALIGN="left"><B>Methods inherited from class java.awt.Container</B></TH>
323
 </TR>
323
 </TR>
324
 <TR BGCOLOR="white" CLASS="TableRowColor">
324
 <TR BGCOLOR="white" CLASS="TableRowColor">
325
-<TD><CODE>add, add, add, add, add, addContainerListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getAlignmentX, getAlignmentY, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalPolicy, getInsets, getLayout, getMaximumSize, getMinimumSize, getMousePosition, getPreferredSize, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, print, printComponents, processContainerEvent, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusTraversalKeys, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setFont, transferFocusBackward, transferFocusDownCycle, validate, validateTree</CODE></TD>
325
+<TD><CODE>add, add, add, add, add, addContainerListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getAlignmentX, getAlignmentY, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalPolicy, getInsets, getLayout, getMaximumSize, getMinimumSize, getMousePosition, getPreferredSize, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paint, paintComponents, preferredSize, print, printComponents, processContainerEvent, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusTraversalKeys, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setFont, transferFocusBackward, transferFocusDownCycle, validate, validateTree</CODE></TD>
326
 </TR>
326
 </TR>
327
 </TABLE>
327
 </TABLE>
328
 &nbsp;<A NAME="methods_inherited_from_class_java.awt.Component"><!-- --></A>
328
 &nbsp;<A NAME="methods_inherited_from_class_java.awt.Component"><!-- --></A>

+ 2
- 2
Cube Control/doc/overview-tree.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:15 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:09 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 Class Hierarchy
7
 Class Hierarchy
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 

+ 2
- 2
Cube Control/doc/package-frame.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:15 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:08 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 &lt;Unnamed&gt;
7
 &lt;Unnamed&gt;
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 

+ 2
- 2
Cube Control/doc/package-summary.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:15 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:08 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 
7
 
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 

+ 2
- 2
Cube Control/doc/package-tree.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:15 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:08 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
  Class Hierarchy
7
  Class Hierarchy
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 

+ 2
- 2
Cube Control/doc/serialized-form.html Wyświetl plik

2
 <!--NewPage-->
2
 <!--NewPage-->
3
 <HTML>
3
 <HTML>
4
 <HEAD>
4
 <HEAD>
5
-<!-- Generated by javadoc (build 1.6.0_29) on Wed Dec 07 17:50:15 CET 2011 -->
5
+<!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 12 09:47:08 GMT+01:00 2011 -->
6
 <TITLE>
6
 <TITLE>
7
 Serialized Form
7
 Serialized Form
8
 </TITLE>
8
 </TITLE>
9
 
9
 
10
-<META NAME="date" CONTENT="2011-12-07">
10
+<META NAME="date" CONTENT="2011-12-12">
11
 
11
 
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13
 
13
 

BIN
Cube Control/splash.png Wyświetl plik


Ładowanie…
Anuluj
Zapisz