From 204b105065370d5a4c9a5634eab1b6d462253fc0 Mon Sep 17 00:00:00 2001 From: Sean Islas <seanislas@whiteoakfarmandranch.com> Date: Mon, 15 May 2023 11:49:23 -0700 Subject: [PATCH] Adding package-info file to HW3 - Islas --- .../homework3/Islas/package-info.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 assignments/src/MV3500Cohort2023MarchJune/homework3/Islas/package-info.java diff --git a/assignments/src/MV3500Cohort2023MarchJune/homework3/Islas/package-info.java b/assignments/src/MV3500Cohort2023MarchJune/homework3/Islas/package-info.java new file mode 100644 index 0000000000..2029f30135 --- /dev/null +++ b/assignments/src/MV3500Cohort2023MarchJune/homework3/Islas/package-info.java @@ -0,0 +1,15 @@ +/** + * Assignment3 for the NPS MOVES MV3500 Networked Graphics course. + * + * @see <a href="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/-/tree/master/assignments">networkedGraphicsMV3500 assignments</a> + * @see java.lang.Package + * @see <a href="https://stackoverflow.com/questions/22095487/why-is-package-info-java-useful">StackOverflow: why-is-package-info-java-useful</a> + * @see <a href="https://stackoverflow.com/questions/624422/how-do-i-document-packages-in-java">StackOverflow: how-do-i-document-packages-in-java</a> + * + * Updating original example to include X, Y, and Z coordinates for each entity sent across the network. + * Adjusted time between loops to three seconds to allow for ease of reading. + * Adjusted total number of loops to 4 to shorten simulation time. + * + */ + +package MV3500Cohort2023MarchJune.homework3.Islas; -- GitLab