Skip to content

Commit 8ff7474

Browse files
committed
Typo, javadoc fix, code format
1 parent 4b5f1ab commit 8ff7474

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/gov/nasa/worldwindx/examples/ColladaViewer.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
import java.io.File;
4343

4444
/**
45-
* Shows how to load {@link <a href="https://www.khronos.org/collada/">COLLADA</a> 3D models.
45+
* Shows how to load <a href="https://www.khronos.org/collada/">COLLADA</a> 3D models.
4646
*/
4747
public class ColladaViewer extends ApplicationTemplate {
4848

@@ -88,10 +88,10 @@ public static class WorkerThread extends Thread {
8888

8989
// Indicates the source of the COLLADA file loaded by this thread. Initialized during construction.
9090
protected Object colladaSource;
91-
91+
9292
// Geographic position of the COLLADA model.
9393
protected Position position;
94-
94+
9595
// Indicates the <code>AppFrame</code> the COLLADA file content is displayed in. Initialized during
9696
// construction.
9797
protected AppFrame appFrame;
@@ -131,21 +131,21 @@ public void run() {
131131
}
132132
}
133133
}
134-
134+
135135
public static void main(String[] args) {
136-
136+
137137
// Set camera position and pitch angle.
138138
Configuration.setValue(AVKey.INITIAL_LATITUDE, 40.028);
139139
Configuration.setValue(AVKey.INITIAL_LONGITUDE, -105.27284091410579);
140140
Configuration.setValue(AVKey.INITIAL_ALTITUDE, 4000);
141141
Configuration.setValue(AVKey.INITIAL_PITCH, 50);
142-
142+
143143
// Set the application frame to update, a position for the model, and a path to the COLLADA file.
144144
final AppFrame af = (AppFrame) start("WorldWind COLLADA Viewer", AppFrame.class);
145145
final Position MackyAuditoriumPosition = Position.fromDegrees(40.009993372683, -105.272774533734);
146146
final File ColladaFile = new File("testData/collada/cu_macky/CU Macky.dae");
147-
148-
// Invoque the <code>Thread</code> to load the COLLADA model asynchronously.
147+
148+
// Invoke the <code>Thread</code> to load the COLLADA model asynchronously.
149149
new WorkerThread(ColladaFile, MackyAuditoriumPosition, af).start();
150150

151151
}

0 commit comments

Comments
 (0)