mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 10:47:49 -06:00
Fixing typo
This commit is contained in:
parent
2e8d653fa5
commit
48d06fea50
1 changed files with 3 additions and 3 deletions
|
@ -10,18 +10,18 @@ from UM.Qt.Duration import Duration
|
||||||
|
|
||||||
import math
|
import math
|
||||||
|
|
||||||
## A class for processing and calculating minimum, currrent and maximum print time.
|
## A class for processing and calculating minimum, current and maximum print time.
|
||||||
#
|
#
|
||||||
# This class contains all the logic relating to calculation and slicing for the
|
# This class contains all the logic relating to calculation and slicing for the
|
||||||
# time/quality slider concept. It is a rather tricky combination of event handling
|
# time/quality slider concept. It is a rather tricky combination of event handling
|
||||||
# and state management. The logic behind this is as follows:
|
# and state management. The logic behind this is as follows:
|
||||||
#
|
#
|
||||||
# - A scene change or settting change event happens.
|
# - A scene change or setting change event happens.
|
||||||
# We track what the source was of the change, either a scene change, a setting change, an active machine change or something else.
|
# We track what the source was of the change, either a scene change, a setting change, an active machine change or something else.
|
||||||
# - This triggers a new slice with the current settings - this is the "current settings pass".
|
# - This triggers a new slice with the current settings - this is the "current settings pass".
|
||||||
# - When the slice is done, we update the current print time and material amount.
|
# - When the slice is done, we update the current print time and material amount.
|
||||||
# - If the source of the slice was not a Setting change, we start the second slice pass, the "low quality settings pass". Otherwise we stop here.
|
# - If the source of the slice was not a Setting change, we start the second slice pass, the "low quality settings pass". Otherwise we stop here.
|
||||||
# - When that is done, we update the minimum print time and start the final slcice pass, the "high quality settings pass".
|
# - When that is done, we update the minimum print time and start the final slice pass, the "high quality settings pass".
|
||||||
# - When the high quality pass is done, we update the maximum print time.
|
# - When the high quality pass is done, we update the maximum print time.
|
||||||
#
|
#
|
||||||
class PrintInformation(QObject):
|
class PrintInformation(QObject):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue