diff options
author | Ninad Sathaye <ninad@nanorex.com> | 2008-09-04 20:02:34 +0000 |
---|---|---|
committer | Ninad Sathaye <ninad@nanorex.com> | 2008-09-04 20:02:34 +0000 |
commit | 11c707b8e6419bb8691c1f7f35e895d875bb2815 (patch) | |
tree | 44177431b223a4327c0a18a4b924fffa08f01935 | |
parent | a16106ad4cd5d2a77d3307866a398126ff7bda46 (diff) | |
download | nanoengineer-11c707b8e6419bb8691c1f7f35e895d875bb2815.tar.gz nanoengineer-11c707b8e6419bb8691c1f7f35e895d875bb2815.zip |
renamed pkg Line to LineMode to avoid a potential confusion with model.Line.py (Line.py is used only for debug as of today and creates Lines as a jig)
5 files changed, 7 insertions, 7 deletions
diff --git a/cad/src/cnt/temporary_commands/NanotubeLineMode.py b/cad/src/cnt/temporary_commands/NanotubeLineMode.py index f19b0fabf..32d0db1d7 100644 --- a/cad/src/cnt/temporary_commands/NanotubeLineMode.py +++ b/cad/src/cnt/temporary_commands/NanotubeLineMode.py @@ -10,7 +10,7 @@ TODO: """ -from temporary_commands.LineMode import LineMode +from temporary_commands.LineMode.LineMode import LineMode from graphics.drawing.drawNanotubeLadder import drawNanotubeLadder diff --git a/cad/src/commandSequencer/builtin_command_loaders.py b/cad/src/commandSequencer/builtin_command_loaders.py index e4b3eedcb..668775417 100644 --- a/cad/src/commandSequencer/builtin_command_loaders.py +++ b/cad/src/commandSequencer/builtin_command_loaders.py @@ -56,7 +56,7 @@ from temporary_commands.ZoomToAreaMode import ZoomToAreaMode from temporary_commands.ZoomInOutMode import ZoomInOutMode from temporary_commands.PanMode import PanMode from temporary_commands.RotateMode import RotateMode -from temporary_commands.Line.LineMode import LineMode +from temporary_commands.LineMode.LineMode import LineMode from temporary_commands.RotateAboutPoint_Command import RotateAboutPoint_Command #Carbon nanotube command imports diff --git a/cad/src/dna/temporary_commands/DnaLineMode.py b/cad/src/dna/temporary_commands/DnaLineMode.py index 121eb6791..5b308207e 100644 --- a/cad/src/dna/temporary_commands/DnaLineMode.py +++ b/cad/src/dna/temporary_commands/DnaLineMode.py @@ -9,8 +9,8 @@ TODO: - User Preferences for different rubberband line display styles """ -from temporary_commands.Line.LineMode import LineMode -from temporary_commands.Line.LineMode import LineMode_GM +from temporary_commands.LineMode.LineMode import LineMode +from temporary_commands.LineMode.LineMode import LineMode_GM from graphics.drawing.drawDnaLadder import drawDnaLadder from graphics.drawing.drawDnaRibbons import drawDnaRibbons diff --git a/cad/src/protein/temporary_commands/PeptideLineMode.py b/cad/src/protein/temporary_commands/PeptideLineMode.py index 5a13980c5..a861cbc47 100644 --- a/cad/src/protein/temporary_commands/PeptideLineMode.py +++ b/cad/src/protein/temporary_commands/PeptideLineMode.py @@ -9,7 +9,7 @@ """ -from temporary_commands.Line.LineMode import LineMode +from temporary_commands.LineMode.LineMode import LineMode from graphics.drawing.drawPeptideTrace import drawPeptideTrace, drawPeptideTrace_new diff --git a/cad/src/temporary_commands/RotateAboutPoint_Command.py b/cad/src/temporary_commands/RotateAboutPoint_Command.py index 5684be37d..1bffd70eb 100644 --- a/cad/src/temporary_commands/RotateAboutPoint_Command.py +++ b/cad/src/temporary_commands/RotateAboutPoint_Command.py @@ -13,8 +13,8 @@ conference. This may be revised further. -- Need documentation """ -from temporary_commands.Line.LineMode import LineMode -from temporary_commands.Line.LineMode import LineMode_GM +from temporary_commands.LineMode.LineMode import LineMode +from temporary_commands.LineMode.LineMode import LineMode_GM import foundation.env as env from utilities.prefs_constants import atomHighlightColor_prefs_key from model.chem import Atom # for isinstance check as of 2008-04-17 |