Merge branch 'main' into main

This commit is contained in:
Jelle Spijker 2023-03-22 07:34:48 +01:00 committed by GitHub
commit 0f5cfba1bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
81 changed files with 3780 additions and 758 deletions

View File

@ -75,6 +75,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Cache Conan data
id: cache-conan
uses: actions/cache@v3
with:
path: ~/.conan
key: ${{ runner.os }}-conan
- name: Setup Python and pip
uses: actions/setup-python@v4
with:
@ -101,7 +108,7 @@ jobs:
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 12
- name: Create the default Conan profile
run: conan profile new default --detect
run: conan profile new default --detect --force
- name: Get Conan configuration
run: conan config install https://github.com/Ultimaker/conan-config.git

View File

@ -27,6 +27,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Cache Conan data
id: cache-conan
uses: actions/cache@v3
with:
path: ~/.conan
key: ${{ runner.os }}-conan
- name: Setup Python and pip
uses: actions/setup-python@v4
with:
@ -53,7 +60,7 @@ jobs:
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 12
- name: Create the default Conan profile
run: conan profile new default --detect
run: conan profile new default --detect --force
- name: Get Conan configuration
run: conan config install https://github.com/Ultimaker/conan-config.git

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
scriptdir=$(dirname $0)

View File

@ -43,7 +43,7 @@ from .WorkspaceDialog import WorkspaceDialog
i18n_catalog = i18nCatalog("cura")
_ignored_machine_network_metadata = {
_ignored_machine_network_metadata: Set[str] = {
"um_cloud_cluster_id",
"um_network_key",
"um_linked_to_account",
@ -55,7 +55,7 @@ _ignored_machine_network_metadata = {
"capabilities",
"octoprint_api_key",
"is_abstract_machine"
} # type: Set[str]
}
class ContainerInfo:
@ -69,41 +69,41 @@ class ContainerInfo:
class QualityChangesInfo:
def __init__(self) -> None:
self.name = None
self.name: Optional[str] = None
self.global_info = None
self.extruder_info_dict = {} # type: Dict[str, ContainerInfo]
self.extruder_info_dict: Dict[str, ContainerInfo] = {}
class MachineInfo:
def __init__(self) -> None:
self.container_id = None
self.name = None
self.definition_id = None
self.container_id: Optional[str] = None
self.name: Optional[str] = None
self.definition_id: Optional[str] = None
self.metadata_dict = {} # type: Dict[str, str]
self.metadata_dict: Dict[str, str] = {}
self.quality_type = None
self.intent_category = None
self.custom_quality_name = None
self.quality_changes_info = None
self.variant_info = None
self.quality_type: Optional[str] = None
self.intent_category: Optional[str] = None
self.custom_quality_name: Optional[str] = None
self.quality_changes_info: Optional[QualityChangesInfo] = None
self.variant_info: Optional[ContainerInfo] = None
self.definition_changes_info = None
self.user_changes_info = None
self.definition_changes_info: Optional[ContainerInfo] = None
self.user_changes_info: Optional[ContainerInfo] = None
self.extruder_info_dict = {} # type: Dict[str, ExtruderInfo]
self.extruder_info_dict: Dict[str, str] = {}
class ExtruderInfo:
def __init__(self) -> None:
self.position = None
self.enabled = True
self.variant_info = None
self.root_material_id = None
self.variant_info: Optional[ContainerInfo] = None
self.root_material_id: Optional[str] = None
self.definition_changes_info = None
self.user_changes_info = None
self.intent_info = None
self.definition_changes_info: Optional[ContainerInfo] = None
self.user_changes_info: Optional[ContainerInfo] = None
self.intent_info: Optional[ContainerInfo] = None
class ThreeMFWorkspaceReader(WorkspaceReader):
@ -131,14 +131,14 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
# - variant
self._ignored_instance_container_types = {"quality", "variant"}
self._resolve_strategies = {} # type: Dict[str, str]
self._resolve_strategies: Dict[str, str] = {}
self._id_mapping = {} # type: Dict[str, str]
self._id_mapping: Dict[str, str] = {}
# In Cura 2.5 and 2.6, the empty profiles used to have those long names
self._old_empty_profile_id_dict = {"empty_%s" % k: "empty" for k in ["material", "variant"]}
self._old_new_materials = {} # type: Dict[str, str]
self._old_new_materials: Dict[str, str] = {}
self._machine_info = None
def _clearState(self):
@ -461,11 +461,15 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
materials_in_extruders_dict = {} # Which material is in which extruder
# if the global stack is found, we check if there are conflicts in the extruder stacks
# If the global stack is found, we check if there are conflicts in the extruder stacks
for extruder_stack_file in extruder_stack_files:
serialized = archive.open(extruder_stack_file).read().decode("utf-8")
not_upgraded_parser = ConfigParser(interpolation=None)
not_upgraded_parser.read_string(serialized)
serialized = ExtruderStack._updateSerialized(serialized, extruder_stack_file)
parser = ConfigParser(interpolation = None)
parser = ConfigParser(interpolation=None)
parser.read_string(serialized)
# The check should be done for the extruder stack that's associated with the existing global stack,
@ -497,19 +501,26 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
extruder_info.user_changes_info = instance_container_info_dict[user_changes_id]
self._machine_info.extruder_info_dict[position] = extruder_info
intent_container_id = parser["containers"][str(_ContainerIndexes.Intent)]
intent_id = parser["containers"][str(_ContainerIndexes.Intent)]
if intent_id not in ("empty", "empty_intent"):
extruder_info.intent_info = instance_container_info_dict[intent_id]
if intent_container_id in instance_container_info_dict:
extruder_info.intent_info = instance_container_info_dict[intent_id]
else:
# It can happen that an intent has been renamed. In that case, we should still use the old
# name, since we used that to generate the instance_container_info_dict keys.
extruder_info.intent_info = instance_container_info_dict[not_upgraded_parser["containers"][str(_ContainerIndexes.Intent)]]
if not machine_conflict and containers_found_dict["machine"] and global_stack:
if int(position) >= len(global_stack.extruderList):
continue
existing_extruder_stack = global_stack.extruderList[int(position)]
# check if there are any changes at all in any of the container stacks.
# Check if there are any changes at all in any of the container stacks.
id_list = self._getContainerIdListFromSerialized(serialized)
for index, container_id in enumerate(id_list):
# take into account the old empty container IDs
# Take into account the old empty container IDs
container_id = self._old_empty_profile_id_dict.get(container_id, container_id)
if existing_extruder_stack.getContainer(index).getId() != container_id:
machine_conflict = True
@ -740,7 +751,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
# quality_changes file. If that's the case, take the extruder count into account when creating the machine
# or else the extruderList will return only the first extruder, leading to missing non-global settings in
# the other extruders.
machine_extruder_count = self._getMachineExtruderCount() # type: Optional[int]
machine_extruder_count: Optional[int] = self._getMachineExtruderCount()
global_stack = CuraStackBuilder.createMachine(machine_name, self._machine_info.definition_id, machine_extruder_count)
if global_stack: # Only switch if creating the machine was successful.
extruder_stack_dict = {str(position): extruder for position, extruder in enumerate(global_stack.extruderList)}
@ -867,7 +878,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
@staticmethod
def _loadMetadata(file_name: str) -> Dict[str, Dict[str, Any]]:
result = dict() # type: Dict[str, Dict[str, Any]]
result: Dict[str, Dict[str, Any]] = dict()
try:
archive = zipfile.ZipFile(file_name, "r")
except zipfile.BadZipFile:
@ -879,7 +890,6 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
metadata_files = [name for name in archive.namelist() if name.endswith("plugin_metadata.json")]
for metadata_file in metadata_files:
try:
plugin_id = metadata_file.split("/")[0]
@ -920,7 +930,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
quality_changes_name = self._container_registry.uniqueName(quality_changes_name)
for position, container_info in container_info_dict.items():
extruder_stack = None
intent_category = None # type: Optional[str]
intent_category: Optional[str] = None
if position is not None:
try:
extruder_stack = global_stack.extruderList[int(position)]
@ -1161,7 +1171,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
root_material_id = self._old_new_materials.get(root_material_id, root_material_id)
material_node = machine_node.variants[extruder_stack.variant.getName()].materials[root_material_id]
extruder_stack.material = material_node.container # type: InstanceContainer
extruder_stack.material = material_node.container
def _applyChangesToMachine(self, global_stack, extruder_stack_dict):
# Clear all first

View File

@ -303,18 +303,17 @@ Item
Component.onCompleted:
{
update()
updateModel();
}
function update()
function updateModel()
{
clear()
for (var i = 1; i <= Cura.MachineManager.activeMachine.maxExtruderCount; i++)
{
clear();
for (var i = 1; i <= Cura.MachineManager.activeMachine.maxExtruderCount; i ++) {
// Use String as value. JavaScript only has Number. PropertyProvider.setPropertyValue()
// takes a QVariant as value, and Number gets translated into a float. This will cause problem
// for integer settings such as "Number of Extruders".
append({ text: String(i), value: String(i) })
append({ text: String(i), value: String(i) });
}
}
}
@ -322,7 +321,9 @@ Item
Connections
{
target: Cura.MachineManager
function onGlobalContainerChanged() { extruderCountModel.update() }
function onGlobalContainerChanged() {
extruderCountModel.updateModel();
}
}
}

View File

@ -46,7 +46,7 @@ class PauseAtHeight(Script):
"pause_layer":
{
"label": "Pause Layer",
"description": "Enter the Number of the LAST layer you want to finish prior to the pause (from the Cura preview).",
"description": "Enter the Number of the LAST layer you want to finish prior to the pause. Note that 0 is the first layer printed.",
"type": "int",
"value": "math.floor((pause_height - 0.27) / 0.1) + 1",
"minimum_value": "0",

View File

@ -53,7 +53,7 @@ class AutoDetectBaudJob(Job):
try:
serial = Serial(str(self._serial_port), baud_rate, timeout = read_timeout, writeTimeout = write_timeout)
except SerialException:
Logger.logException("w", "Unable to create serial")
Logger.warning(f"Unable to create serial connection to {serial} with baud rate {baud_rate}")
continue
else:
# We already have a serial connection, just change the baud rate.

View File

@ -10,6 +10,7 @@ if TYPE_CHECKING:
upgrade = VersionUpgrade52to53.VersionUpgrade52to53()
def getMetaData() -> Dict[str, Any]:
return {
"version_upgrade": {
@ -21,6 +22,7 @@ def getMetaData() -> Dict[str, Any]:
("quality_changes", 4000020): ("quality_changes", 4000021, upgrade.upgradeInstanceContainer),
("quality", 4000020): ("quality", 4000021, upgrade.upgradeInstanceContainer),
("user", 4000020): ("user", 4000021, upgrade.upgradeInstanceContainer),
("intent", 4000020): ("intent", 4000021, upgrade.upgradeInstanceContainer),
},
"sources": {
"preferences": {

View File

@ -1,46 +1,41 @@
### Direct requirements for Uranium and libCharon ###
PyQt6-sip==13.2.1 \
--hash=sha256:b7bce59900b2e0a04f70246de2ccf79ee7933036b6b9183cf039b62eeae2b858 \
--hash=sha256:8b52d42e42e6e9f934ac7528cd154ac0210a532bb33fa1edfb4a8bbfb73ff88b \
--hash=sha256:0314d011633bc697e99f3f9897b484720e81a5f4ba0eaa5f05c5811e2e74ea53 \
--hash=sha256:226e9e349aa16dc1132f106ca01fa99cf7cb8e59daee29304c2fea5fa33212ec
PyQt6==6.2.3 \
--hash=sha256:a9bfcac198fe4b703706f809bb686c7cef5f60a7c802fc145c6b57929c7a6a34 \
--hash=sha256:11c039b07962b29246de2da0912f4f663786185fd74d48daac7a270a43c8d92a \
--hash=sha256:8a2f357b86fec8598f52f16d5f93416931017ca1986d5f68679c9565bfc21fff \
--hash=sha256:577334c9d4518022a4cb6f9799dfbd1b996167eb31404b5a63d6c43d603e6418
PyQt6-Qt6==6.2.4 \
--hash=sha256:42c37475a50ec7e06e0445ac9ce39465f69a86af407ad9b28b183da178d401ee \
--hash=sha256:b68543e5d5a4f5d24c26b517569da3cd30b0fbe75390b841e142c160399b3c0a \
--hash=sha256:0aa93581b92e01deaf2dcaad88ed6718996a6d84de59ee88316bcba143f008c9 \
--hash=sha256:48bc5b7400d6bca13d8c0a145f82295a6da317952ee1a3f107f1cd7d078c8140
PyQt6-NetworkAuth==6.2.0 \
--hash=sha256:23e730cc0d6b828bec2f92d9fac3607871e6033a8af4620e5d4e3afc13bd6c3c \
--hash=sha256:b85ee25b01d6cb38d6141df0052b96de2df7f6e69066eaddb22ae238f56be40b \
--hash=sha256:e637781a00dd2032d0fd2025af09274898335033763e1dc765a5a99348f60c3b \
--hash=sha256:542e9d9a8a5bb78e1f26fa3d35ee01f45209bcf5a35b0cc367aaa85932c29750
PyQt6-NetworkAuth-Qt6==6.2.4 \
--hash=sha256:c7996a9d8c4ce024529ec37981fbfd525ab1a2d497af1281f81f2b6054452d2e \
--hash=sha256:1ae9e08e03bd9d5ebdb42dfaccf484a9cc62eeea7504621fe42c005ff1745e66 \
--hash=sha256:1363ea81e5c6ac10bfd643e41ba0d215c0d031a57ff1e5972cc4c2a918efe712 \
--hash=sha256:8ed4e5e0eaaa42a6f91aba6745eea23fb3ffcbddc6b162016936530ed28dd0ad
PyQt6-sip==13.2.1 \
--hash=sha256:0314d011633bc697e99f3f9897b484720e81a5f4ba0eaa5f05c5811e2e74ea53 \
--hash=sha256:082a80264699d4e2e919a7de8b6662886a353863d2b30a0047fe73d42e65c98e \
--hash=sha256:0a49f2d0bb49bc9d72665d62fb5ab6549c72dcf49e1e52dc2046edb8832a17a3 \
--hash=sha256:0ede42e84a79871022e1a8e4d5c05f70821b2795910c4cd103e863ce62bc8d68 \
--hash=sha256:226e9e349aa16dc1132f106ca01fa99cf7cb8e59daee29304c2fea5fa33212ec \
--hash=sha256:43afd9c9fdbc5f6ed2e22cae0752a8b8d9545c6d85f314bd27b861e21d4a97fe \
--hash=sha256:4b119a8fd880ece15a5bdff583edccd89dbc79d49de2e11cbbd6bba72713d1f3 \
--hash=sha256:616b6bad827e9c6e7ce5179883ca0f44110a42dcb045344aa28a495c05e19795 \
--hash=sha256:65f5aee6195bd0e785bd74f75ee080a5d5fb840c03210956e4ccbdde481b487c \
--hash=sha256:8b52d42e42e6e9f934ac7528cd154ac0210a532bb33fa1edfb4a8bbfb73ff88b \
--hash=sha256:a3d53fab72f959b45aeb954124255b585ff8d497a514a2582e0afd808fc2f3da \
--hash=sha256:b0d92f4a21706b18ab80c088cded94cd64d32a0c48e1729a4cc53fe5ab93cc1a \
--hash=sha256:b7bce59900b2e0a04f70246de2ccf79ee7933036b6b9183cf039b62eeae2b858 \
--hash=sha256:c456d5ccc4478254052082e298db01bb9d0495471c1659046697bb5dc9d2506c \
--hash=sha256:e2e6a3972169891dbc33d806f50ebf17eaa47a487ff6e4910fe2485c47cb6c2b \
--hash=sha256:f4226d4ab239d8655f94c42b397f23e6e85b246f614ff81162ef9321e47f7619
PyQt6-sip==13.4.1 \
--hash=sha256:0df998f2b6ceeacfd10de773441572e215be0c9cae566cc7dd36e231bf714a12 \
--hash=sha256:224575e84805c4317bacd5d1b8e93e0ad5c48685dadbbe1e902d4ebe16f22828 \
--hash=sha256:36ae29cdc223cacc1257d0f5075cf81474550c6d26b728f922487a2aa935f130 \
--hash=sha256:3a674c591d4274d4ea8127205290e927a7dab0eb87a0038d4f4ea1d430782649 \
--hash=sha256:3ef9392e4ae29d393b79237d85840cdc6b8831f36eed5d56c7d9b329b380cc8d \
--hash=sha256:43935873d60f57719632840d517afee04ef8f30e92cfe0dadc7e6326691920fc \
--hash=sha256:5731f22618435654352ef07684549a17be82b75254227fc80b4b5b0b59fc6656 \
--hash=sha256:5bc4beb6fb1de4c9ba8beee7b1a4a813fa888c3b095206dafcd25d7e6e4ed2a7 \
--hash=sha256:5c36ab984402e96792eebf4b031abfaa589aa20af3190a79c54502c16964d97e \
--hash=sha256:a2a0461992c6657f343308b150c4d6b57e9e7a0e5c2f79538434e7fb869ea827 \
--hash=sha256:a81490ee84d7a41a126b116081bd97d758f41bf706aee0a8cec24d6e4c660184 \
--hash=sha256:e00e287ea05bbc293fc6e2198301962af9b7b622bd2daf4288f925a88ae35dc9 \
--hash=sha256:e670a7b2fb7e32204ce67d274017bfff3e21139d217d60cebbfcb75b019c91ee \
--hash=sha256:ee06f255787a0b4957f357f93b78d2a11ca3761916833e3afa83f1381d4d1a46 \
--hash=sha256:fbee0d554e0e98f56dbf6d94b00a28cc32425938ad7ae98fd91f8822c5b24d45 \
--hash=sha256:fcc6d78314783f4a193f02353f431b7ea4d357f47c3c7a7d0740e723f69c64dc
PyQt6==6.4.2 \
--hash=sha256:18d1daf98d9236d55102cdadafd1056f5802f3c9288fcf7238569937b71a89f0 \
--hash=sha256:25bd399b4a95dce65d5f937c1aa85d3c7e14a21745ae2a4ca14c0116cd104290 \
--hash=sha256:740244f608fe15ee1d89695c43f31a14caeca41c4f02ac36c86dfba4a5d5813d \
--hash=sha256:c128bc0f17833e324593e3db83e99470d451a197dd17ff0333927b946c935bd9
PyQt6-Qt6==6.4.2 \
--hash=sha256:9f07c3c100cb46cca4074965e7494d4df4f0fc016497d5303c1fe135822876e1 \
--hash=sha256:a29b8c858babd523e80c8db5f8fd19792641588ec04eab49af18b7a4423eb99f \
--hash=sha256:c0e91d0275d428496cacff717a9b719c52bfa52b21f124d638b79cc2217bc81e \
--hash=sha256:d19c4e72615762cd6f0b043f23fa5f0b02656091427ce6de1efccd58e10e6a53
PyQt6-NetworkAuth==6.4.0 \
--hash=sha256:ab6178b3b2902ae9939a148555cfcee8c7803d6b0d5924cd1bd8f3407b8b9210 \
--hash=sha256:c16ec80232d88024b60d04386a23cc93067e5644a65f47f26ffb13d84dcd4a6d \
--hash=sha256:c302cd0d838c7229eda5e26e0b1b3d3ec4f8720f8d9379472bce5a89ff0735c2 \
--hash=sha256:d948fc0cf43b64afbda2acb5bf2392f785a1e7a2950d79ea850c1a3f4ae12f1a
PyQt6-NetworkAuth-Qt6==6.4.2 \
--hash=sha256:179094bcb4d4d056316c22d3d067cd94d4591da23f804461bfb025ccfa29b2b4 \
--hash=sha256:1de6abbb5fa6585b97ae49d3f64b0dfad40bd56b1a31744d9775ff26247241c8 \
--hash=sha256:79ec4b0fc9450bbedbff03541b93b10d1c7e761cd2cc16ce70d2b09dcdf8c720 \
--hash=sha256:d96d557fe61edb9b68d189f270f0393d6579c8d308e6b0d41bc0699371d7cb4e
certifi==2021.10.8 \
--hash=sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872 \
--hash=sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569

View File

@ -1298,6 +1298,18 @@
"limit_to_extruder": "wall_0_extruder_nr",
"settable_per_mesh": true
},
"hole_xy_offset_max_diameter":
{
"label": "Hole Horizontal Expansion Max Diameter",
"description": "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded.",
"unit": "mm",
"type": "float",
"default_value": 0,
"minimum_value": "0",
"enabled": "hole_xy_offset > 0",
"limit_to_extruder": "wall_0_extruder_nr",
"settable_per_mesh": true
},
"z_seam_type":
{
"label": "Z Seam Alignment",
@ -1649,6 +1661,20 @@
"limit_to_extruder": "top_bottom_extruder_nr",
"settable_per_mesh": true
},
"small_skin_width":
{
"label": "Small Top/Bottom Width",
"description": "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions.",
"value": "skin_line_width * 2",
"default_value": 1,
"minimum_value": "0",
"maximum_value_warning": "skin_line_width * 10",
"type": "float",
"enabled": "(top_layers > 0 or bottom_layers > 0) and top_bottom_pattern != 'concentric'",
"limit_to_extruder": "top_bottom_extruder_nr",
"settable_per_mesh": true,
"unit": "mm"
},
"skin_no_small_gaps_heuristic":
{
"label": "No Skin in Z Gaps",
@ -5679,6 +5705,21 @@
"settable_per_mesh": false,
"settable_per_extruder": true
},
"skirt_height":
{
"label": "Skirt Height",
"description": "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt.",
"type": "int",
"default_value": 3,
"value": "3 if resolveOrValue('skirt_gap') > 0.0 else 1",
"minimum_value": "1",
"maximum_value_warning": "10",
"maximum_value": "machine_height / layer_height",
"enabled": "resolveOrValue('adhesion_type') == 'skirt'",
"limit_to_extruder": "skirt_brim_extruder_nr",
"settable_per_mesh": false,
"settable_per_extruder": true
},
"skirt_gap":
{
"label": "Skirt Distance",
@ -5789,6 +5830,17 @@
"settable_per_mesh": false,
"settable_per_extruder": true
},
"brim_smart_ordering":
{
"label": "Smart Brim",
"description": "Swap print order of the innermost and second innermost brim lines. This improves brim removal.",
"type": "bool",
"enabled": "resolveOrValue('adhesion_type') == 'brim'",
"default_value": true,
"limit_to_extruder": "skirt_brim_extruder_nr",
"settable_per_mesh": false,
"settable_per_extruder": false
},
"raft_margin":
{
"label": "Raft Extra Margin",

View File

@ -0,0 +1,26 @@
{
"version": 2,
"name": "Hellbot Magna SE 300",
"inherits": "fdmprinter",
"metadata":
{
"visible": true,
"author": "Hellbot Development Team",
"manufacturer": "Hellbot",
"file_formats": "text/x-gcode",
"platform": "Hellbot_Magna_SE_300.obj",
"has_materials": true,
"machine_extruder_trains": { "0": "hellbot_magna_SE_300_extruder" },
"platform_texture": "Hellbot_Magna_SE_300.png"
},
"overrides":
{
"machine_center_is_zero": { "default_value": false },
"machine_depth": { "default_value": 300 },
"machine_extruder_count": { "default_value": 1 },
"machine_heated_bed": { "default_value": true },
"machine_height": { "default_value": 400 },
"machine_name": { "default_value": "Hellbot Magna SE 300" },
"machine_width": { "default_value": 300 }
}
}

View File

@ -0,0 +1,26 @@
{
"version": 2,
"name": "Hellbot Magna SE Pro",
"inherits": "fdmprinter",
"metadata":
{
"visible": true,
"author": "Hellbot Development Team",
"manufacturer": "Hellbot",
"file_formats": "text/x-gcode",
"platform": "Hellbot_Magna_SE_Pro.obj",
"has_materials": true,
"machine_extruder_trains": { "0": "hellbot_magna_SE_Pro_extruder" },
"platform_texture": "Hellbot_magna_SE_Pro.png"
},
"overrides":
{
"machine_center_is_zero": { "default_value": false },
"machine_depth": { "default_value": 230 },
"machine_extruder_count": { "default_value": 1 },
"machine_heated_bed": { "default_value": true },
"machine_height": { "default_value": 250 },
"machine_name": { "default_value": "Hellbot Magna SE Pro" },
"machine_width": { "default_value": 230 }
}
}

View File

@ -0,0 +1,118 @@
{
"version": 2,
"name": "Hyper K",
"inherits": "fdmprinter",
"metadata":
{
"visible": true,
"author": "Mixware",
"manufacturer": "Mixware",
"file_formats": "text/x-gcode",
"platform": "mixware_hyper_k_platform.stl",
"has_machine_quality": true,
"has_materials": true,
"machine_extruder_trains": { "0": "mixware_hyper_k_extruder_0" },
"preferred_material": "generic_pla",
"preferred_quality": "coarse"
},
"overrides":
{
"acceleration_print": { "value": 500 },
"acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" },
"acceleration_travel": { "value": 500 },
"acceleration_travel_layer_0": { "value": "acceleration_travel" },
"adaptive_layer_height_variation": { "value": 0.04 },
"adaptive_layer_height_variation_step": { "value": 0.04 },
"adhesion_type": { "value": "'skirt'" },
"brim_replaces_support": { "value": false },
"brim_width": { "default_value": 3 },
"cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" },
"cool_min_layer_time": { "value": 10 },
"fill_outline_gaps": { "value": false },
"gantry_height": { "value": 25 },
"infill_before_walls": { "value": false },
"infill_overlap": { "value": 30.0 },
"infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" },
"infill_wipe_dist": { "value": 0.0 },
"ironing_line_spacing": { "default_value": 0.4 },
"ironing_pattern": { "default_value": "concentric" },
"jerk_print": { "value": 8 },
"jerk_travel": { "value": "jerk_print" },
"jerk_travel_layer_0": { "value": "jerk_travel" },
"machine_acceleration": { "value": 500 },
"machine_depth": { "default_value": 225 },
"machine_end_gcode": { "default_value": "G91; relative positioning\nG1 Z1.0 F3000 ; move z up little to prevent scratching of print\nG90; absolute positioning\nG1 X0 Y200 F1000 ; prepare for part removal\nM104 S0; turn off extruder\nM140 S0 ; turn off bed\nG1 X0 Y220 F1000 ; prepare for part removal\nM84 ; disable motors\nM106 S0 ; turn off fan" },
"machine_heated_bed": { "default_value": true },
"machine_height": { "default_value": 250 },
"machine_max_acceleration_e": { "value": 5000 },
"machine_max_acceleration_x": { "value": 500 },
"machine_max_acceleration_y": { "value": 500 },
"machine_max_acceleration_z": { "value": 100 },
"machine_max_feedrate_e": { "value": 50 },
"machine_max_feedrate_x": { "value": 500 },
"machine_max_feedrate_y": { "value": 500 },
"machine_max_feedrate_z": { "value": 10 },
"machine_max_jerk_e": { "value": 5 },
"machine_max_jerk_xy": { "value": 10 },
"machine_max_jerk_z": { "value": 0.4 },
"machine_name": { "default_value": "Hyper K" },
"machine_start_gcode": { "default_value": "M140 S{material_bed_temperature} ; Heat bed\nM109 S{material_print_temperature} ; Heat nozzle\nM190 S{material_bed_temperature} ; Wait for bed heating\nG28 ; home all axes\nM117 Purge extruder\nG92 E0 ; reset extruder\nG1 Z5.0 F1000 ; move z up little to prevent scratching of surface\nG1 X0.1 Y20 Z0.3 F5000.0 ; move to start-line position\nG1 X0.1 Y100.0 Z0.3 F1500.0 E15 ; draw 1st line\nG1 X0.4 Y100.0 Z0.3 F5000.0 ; move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; draw 2nd line\nG92 E0 ; reset extruder\nG1 Z5.0 F1000 ; move z up little to prevent scratching of surface" },
"machine_width": { "default_value": 225 },
"material_diameter": { "default_value": 1.75 },
"material_final_print_temperature": { "value": "material_print_temperature" },
"material_initial_print_temperature": { "value": "material_print_temperature" },
"meshfix_maximum_resolution": { "value": "0.25" },
"meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" },
"minimum_interface_area": { "value": 10 },
"minimum_support_area": { "value": 2 },
"optimize_wall_printing_order": { "value": "True" },
"raft_airgap": { "default_value": 0.24 },
"raft_margin":
{
"default_value": 3,
"minimum_value_warning": "0.01"
},
"retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" },
"retraction_combing_max_distance": { "value": 30 },
"retraction_count_max": { "value": 100 },
"retraction_extrusion_window": { "value": 10 },
"retraction_hop": { "value": 0.2 },
"retraction_prime_speed": { "maximum_value": 200 },
"retraction_retract_speed": { "maximum_value": 200 },
"retraction_speed": { "maximum_value": 200 },
"skin_overlap": { "value": 10.0 },
"skirt_gap": { "value": 10.0 },
"skirt_line_count": { "value": 3 },
"speed_layer_0": { "value": 20.0 },
"speed_prime_tower": { "value": "speed_topbottom" },
"speed_print": { "value": 50.0 },
"speed_support": { "value": "speed_wall_0" },
"speed_support_interface": { "value": "speed_topbottom" },
"speed_travel": { "value": "120.0 if speed_print < 60 else 240.0 if speed_print > 100 else speed_print * 2.5" },
"speed_travel_layer_0": { "value": "60 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" },
"speed_z_hop": { "value": 5 },
"support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" },
"support_brim_enable": { "value": true },
"support_brim_width": { "value": 4 },
"support_enable": { "default_value": true },
"support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 15" },
"support_interface_density": { "value": 33.333 },
"support_interface_enable": { "value": true },
"support_interface_height": { "value": "layer_height * 4" },
"support_interface_pattern": { "value": "'grid'" },
"support_type": { "default_value": "buildplate" },
"support_use_towers": { "value": false },
"support_xy_distance": { "value": "wall_line_width_0 * 2" },
"support_xy_distance_overhang": { "value": "wall_line_width_0" },
"support_xy_overrides_z": { "value": "'xy_overrides_z'" },
"support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" },
"top_bottom_pattern": { "default_value": "zigzag" },
"top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" },
"travel_avoid_supports": { "value": true },
"travel_retract_before_outer_wall": { "value": true },
"wall_0_wipe_dist": { "value": 0.0 },
"wall_thickness": { "value": "line_width * 2" },
"z_seam_corner": { "value": "'z_seam_corner_weighted'" },
"z_seam_type": { "value": "'back'" }
}
}

View File

@ -78,10 +78,9 @@
"minimum_value_warning": "0.01"
},
"retraction_amount": { "default_value": 2 },
"retraction_combing": { "value": "all" },
"retraction_combing_max_distance": { "default_value": 30 },
"retraction_combing": { "value": "off" },
"retraction_combing_max_distance": { "default_value": 0.5 },
"retraction_count_max": { "default_value": 100 },
"retraction_enable": { "default_value": true },
"retraction_extrusion_window":
{
"maximum_value_warning": "20",
@ -106,29 +105,22 @@
"maximum_value": "200",
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')"
},
"skin_no_small_gaps_heuristic": { "default_value": false },
"skin_overlap": { "value": 10.0 },
"skirt_brim_speed": { "value": "speed_layer_0" },
"skirt_gap": { "default_value": 8.0 },
"skirt_line_count": { "default_value": 3 },
"speed_layer_0": { "value": "speed_print / 2" },
"speed_prime_tower": { "value": "speed_topbottom" },
"speed_print": { "default_value": 40.0 },
"speed_roofing": { "value": "speed_topbottom" },
"speed_support": { "value": "speed_wall_0" },
"speed_support_interface": { "value": "speed_topbottom" },
"speed_topbottom": { "value": "speed_print / 2" },
"speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" },
"speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" },
"speed_wall_0": { "value": "speed_wall" },
"speed_travel": { "value": "120.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" },
"speed_travel_layer_0": { "value": "60 if speed_layer_0 < 20 else 120 if speed_layer_0 > 30 else speed_layer_0 * 5" },
"speed_wall_x": { "value": "speed_wall" },
"speed_z_hop": { "default_value": 5 },
"support_angle": { "default_value": 60 },
"support_brim_enable": { "value": false },
"support_bottom_stair_step_height": { "value": 0.2 },
"support_brim_width": { "default_value": 4 },
"support_enable": { "default_value": true },
"support_infill_rate": { "value": 15 },
"support_interface_density": { "default_value": 33.333 },
"support_interface_density": { "default_value": 80 },
"support_interface_enable": { "default_value": true },
"support_interface_height": { "value": "layer_height * 4" },
"support_interface_pattern": { "default_value": "grid" },
@ -138,14 +130,14 @@
"support_xy_distance": { "value": "wall_line_width_0 * 2" },
"support_xy_distance_overhang": { "value": "wall_line_width_0" },
"support_xy_overrides_z": { "default_value": "xy_overrides_z" },
"support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" },
"support_z_distance": { "value": "layer_height" },
"top_bottom_pattern": { "default_value": "zigzag" },
"top_bottom_thickness": { "default_value": 0.8 },
"travel_avoid_other_parts": { "default_value": false },
"travel_avoid_supports": { "default_value": true },
"travel_retract_before_outer_wall": { "default_value": true },
"wall_0_wipe_dist": { "value": 0.0 },
"wall_thickness": { "value": "line_width * 2" },
"z_seam_type": { "default_value": "shortest" }
"z_seam_corner": { "default_value": "z_seam_corner_weighted" },
"z_seam_type": { "default_value": "back" }
}
}

View File

@ -0,0 +1,149 @@
{
"version": 2,
"name": "Vulcan",
"inherits": "fdmprinter",
"metadata":
{
"visible": true,
"author": "Mixware",
"manufacturer": "Mixware",
"file_formats": "text/x-gcode",
"platform": "mixware_vulcan_platform.stl",
"has_machine_quality": true,
"has_materials": true,
"has_variants": false,
"machine_extruder_trains": { "0": "mixware_vulcan_extruder_0" },
"preferred_material": "generic_pla",
"preferred_quality": "coarse"
},
"overrides":
{
"acceleration_enabled": { "default_value": true },
"acceleration_print": { "default_value": 500 },
"acceleration_travel": { "value": 500 },
"adhesion_type": { "default_value": "raft" },
"brim_width":
{
"default_value": 5,
"maximum_warning_value": "10",
"minimum_warning_value": "0"
},
"infill_before_walls": { "default_value": false },
"layer_height":
{
"maximum_warning_value": "0.3",
"minimum_warning_value": "0.05"
},
"machine_center_is_zero": { "default_value": true },
"machine_depth": { "default_value": 240 },
"machine_end_gcode": { "default_value": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28\nM84" },
"machine_heated_bed": { "default_value": true },
"machine_height": { "default_value": 250 },
"machine_name": { "default_value": "Vulcan" },
"machine_nozzle_size": { "default_value": 0.4 },
"machine_shape": { "default_value": "elliptic" },
"machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F6000 ;Move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" },
"machine_width": { "default_value": 240 },
"material_bed_temperature":
{
"maximum_warning_value": "105",
"minimum_warning_value": "0"
},
"material_diameter": { "default_value": 1.75 },
"material_print_temperature":
{
"maximum_warning_value": "250",
"minimum_warning_value": "180",
"value": 200
},
"optimize_wall_printing_order": { "default_value": true },
"raft_airgap":
{
"default_value": 0.24,
"maximum_warning_value": "0.3",
"minimum_warning_value": "0.2"
},
"raft_margin":
{
"default_value": 3,
"maximum_warning_value": "10",
"minimum_warning_value": "0",
"minimum_warning_value_warning": "0.01"
},
"retraction_amount":
{
"default_value": 5.5,
"maximum_warning_value": "5.5",
"minimum_warning_value": "4"
},
"retraction_extrusion_window":
{
"maximum_warning_value": "5.5",
"minimum_warning_value": "4"
},
"retraction_prime_speed":
{
"maximum_warning_value": "55",
"minimum_warning_value": "40",
"value": 40
},
"retraction_retract_speed":
{
"maximum_warning_value": "55",
"minimum_warning_value": "40",
"value": 40
},
"retraction_speed":
{
"default_value": 40,
"maximum_warning_value": "55",
"minimum_warning_value": "40"
},
"skirt_gap":
{
"maximum_warning_value": "5",
"minimum_warning_value": "0"
},
"speed_print":
{
"default_value": 40,
"maximum_warning_value": "60",
"minimum_warning_value": "5"
},
"speed_travel":
{
"maximum_warning_value": "150",
"minimum_warning_value": "80",
"value": 80
},
"support_enable": { "default_value": true },
"support_infill_rate": { "value": 20 },
"support_interface_enable": { "default_value": true },
"support_offset": { "value": 0.2 },
"support_roof_enable": { "value": true },
"support_top_distance":
{
"maximum_warning_value": "0.25",
"minimum_warning_value": "0.15",
"value": 0.25
},
"support_z_distance":
{
"default_value": 0.25,
"maximum_warning_value": "0.25",
"minimum_warning_value": "0.15"
},
"top_bottom_thickness":
{
"default_value": 1.0,
"maximum_warning_value": "2",
"minimum_warning_value": "0"
},
"travel_avoid_other_parts": { "default_value": false },
"wall_thickness":
{
"maximum_warning_value": "2",
"minimum_warning_value": "0.4"
}
}
}

View File

@ -0,0 +1,147 @@
{
"version": 2,
"name": "Wand",
"inherits": "fdmprinter",
"metadata":
{
"visible": true,
"author": "Mixware",
"manufacturer": "Mixware",
"file_formats": "text/x-gcode",
"platform": "mixware_wand_platform.stl",
"has_machine_quality": true,
"has_materials": true,
"has_variants": false,
"machine_extruder_trains": { "0": "mixware_wand_extruder_0" },
"preferred_material": "generic_pla",
"preferred_quality": "coarse"
},
"overrides":
{
"acceleration_enabled": { "default_value": true },
"acceleration_print": { "default_value": 500 },
"acceleration_travel": { "value": 500 },
"adhesion_type": { "default_value": "raft" },
"brim_width":
{
"default_value": 3,
"maximum_warning_value": "3",
"minimum_warning_value": "0"
},
"infill_before_walls": { "default_value": false },
"layer_height":
{
"maximum_warning_value": "0.2",
"minimum_warning_value": "0.05"
},
"machine_depth": { "default_value": 102 },
"machine_end_gcode": { "default_value": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E3 F300\nG1 F1500 Z100\nG28 X0 Y0\nM25\nM84" },
"machine_height": { "default_value": 102 },
"machine_name": { "default_value": "Wand" },
"machine_nozzle_size": { "default_value": 0.4 },
"machine_start_gcode": { "default_value": "G28 ;Home\n;Prime the extruder\nM117 Print\nG92 E0\nG1 F1500 X-2 Y0 Z0.28\nG1 F2400 X-2 Y70 Z0.28 E8\nG1 F1500 X-1.7 Y70 Z0.28\nG1 F2400 X-1.7 Y0 Z0.28 E16\nG92 E0\nG92 E0\nG1 Z0.18 F2400 ;Move Z Axis up" },
"machine_width": { "default_value": 102 },
"material_bed_temperature": { "value": 0 },
"material_print_temperature":
{
"maximum_warning_value": "220",
"minimum_warning_value": "180",
"value": 200
},
"optimize_wall_printing_order": { "default_value": true },
"raft_airgap":
{
"default_value": 0.23,
"maximum_warning_value": "0.3",
"minimum_warning_value": "0.2"
},
"raft_base_line_spacing": { "value": 1.0 },
"raft_base_thickness": { "value": 0.36 },
"raft_margin":
{
"default_value": 1,
"minimum_warning_value": "0",
"minimum_warning_value_warning": "0.01"
},
"retraction_amount":
{
"default_value": 4,
"maximum_warning_value": "5.5",
"minimum_warning_value": "2"
},
"retraction_extrusion_window":
{
"maximum_warning_value": "5.5",
"minimum_warning_value": "2",
"value": 3
},
"retraction_prime_speed":
{
"maximum_warning_value": "55",
"minimum_warning_value": "40",
"value": 40
},
"retraction_retract_speed":
{
"maximum_warning_value": "55",
"minimum_warning_value": "40",
"value": 40
},
"retraction_speed":
{
"default_value": 40,
"maximum_warning_value": "55",
"minimum_warning_value": "40"
},
"skirt_gap":
{
"default_value": 2,
"maximum_warning_value": "2",
"minimum_warning_value": "0"
},
"speed_print":
{
"default_value": 40,
"maximum_warning_value": "71",
"minimum_warning_value": "20"
},
"speed_travel":
{
"maximum_warning_value": "120",
"minimum_warning_value": "80",
"value": 80
},
"support_angle": { "default_value": 60 },
"support_enable": { "default_value": true },
"support_infill_rate": { "value": 20 },
"support_interface_enable": { "default_value": true },
"support_offset": { "value": 0.2 },
"support_roof_enable": { "value": true },
"support_top_distance":
{
"maximum_warning_value": "0.25",
"minimum_warning_value": "0.15",
"value": 0.25
},
"support_z_distance":
{
"default_value": 0.25,
"maximum_warning_value": "0.25",
"minimum_warning_value": "0.15"
},
"top_bottom_thickness":
{
"default_value": 1.0,
"maximum_warning_value": "2"
},
"travel_avoid_other_parts": { "default_value": false },
"travel_retract_before_outer_wall": { "value": true },
"wall_thickness":
{
"maximum_warning_value": "1.6",
"minimum_warning_value": "0.4"
},
"z_seam_type": { "default_value": "back" },
"z_seam_y": { "value": 99 }
}
}

View File

@ -0,0 +1,20 @@
{
"version": 2,
"name": "Extruder 1",
"inherits": "fdmextruder",
"metadata":
{
"machine": "hellbot_magna_SE_300",
"position": "0"
},
"overrides":
{
"extruder_nr":
{
"default_value": 0,
"maximum_value": "1"
},
"machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 }
}
}

View File

@ -0,0 +1,20 @@
{
"version": 2,
"name": "Extruder 1",
"inherits": "fdmextruder",
"metadata":
{
"machine": "hellbot_magna_SE_Pro",
"position": "0"
},
"overrides":
{
"extruder_nr":
{
"default_value": 0,
"maximum_value": "1"
},
"machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 }
}
}

View File

@ -0,0 +1,16 @@
{
"version": 2,
"name": "Extruder",
"inherits": "fdmextruder",
"metadata":
{
"machine": "mixware_hyper_k",
"position": "0"
},
"overrides":
{
"extruder_nr": { "default_value": 0 },
"machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 }
}
}

View File

@ -1,6 +1,6 @@
{
"version": 2,
"name": "Extruder 1",
"name": "Extruder",
"inherits": "fdmextruder",
"metadata":
{

View File

@ -0,0 +1,16 @@
{
"version": 2,
"name": "Extruder",
"inherits": "fdmextruder",
"metadata":
{
"machine": "mixware_vulcan",
"position": "0"
},
"overrides":
{
"extruder_nr": { "default_value": 0 },
"machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 }
}
}

View File

@ -0,0 +1,16 @@
{
"version": 2,
"name": "Extruder",
"inherits": "fdmextruder",
"metadata":
{
"machine": "mixware_wand",
"position": "0"
},
"overrides":
{
"extruder_nr": { "default_value": 0 },
"machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 }
}
}

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: 2023-02-16 20:28+0100\n"
"Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n"
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: 2023-02-16 20:35+0100\n"
"Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n"
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
@ -1641,6 +1641,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr "Horizontální expanze díry"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3181,6 +3186,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "Teplota při tisku první vrstvy"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3666,6 +3676,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "Vzdálenost okraj"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3736,6 +3751,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "Teplota tisku malých vrstev"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3746,6 +3766,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr "Drobné části budou vytištěny v procentech jejich normální rychlosti tisku. Pomalejší tisk může pomoci s přilnavostí a přesností."
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4271,6 +4301,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "Povrchová energie."
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6310,6 +6345,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr "Pokud je větší než nula, combingové pohyby delší než tato vzdálenost budou používat retrakci. Nula znamená, že se při combingových pohybech retrakce provádět nebudou."
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n"
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr "Horizontalloch-Erweiterung"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "Drucktemperatur erste Schicht"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "Skirt-Abstand"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3733,6 +3748,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "Drucktemperatur für kleine Schichten"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3743,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr "Bei kleinen Details wird die Geschwindigkeit auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden."
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4268,6 +4298,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "Oberflächenenergie."
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6307,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr "Bei Werten größer als Null verwenden die Combing-Fahrbewegungen, die weiter als über diese Distanz erfolgen, die Einzugsfunktion. Beim Wert Null gibt es keine Maximalstellung, und die Combing-Fahrbewegungen verwenden die Einzugsfunktion nicht."
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n"
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr "Expansión horizontal de orificios"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "Temperatura de impresión de la capa inicial"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "Distancia de falda"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3733,6 +3748,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "Temperatura de impresión para capas pequeñas"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3743,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr "Las pequeñas partes se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión."
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4268,6 +4298,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "Energía de la superficie."
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6307,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr "Si es mayor que cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción. Si se establece como cero, no hay un máximo y los movimientos de peinada no utilizarán la retracción."
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n"
@ -1161,6 +1161,16 @@ msgctxt "hole_xy_offset description"
msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
msgstr ""
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_type label"
msgid "Z Seam Alignment"
@ -1541,6 +1551,16 @@ msgctxt "skin_angles description"
msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
msgstr ""
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "skin_no_small_gaps_heuristic label"
msgid "No Skin in Z Gaps"
@ -4696,6 +4716,16 @@ msgctxt "skirt_line_count description"
msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_gap label"
msgid "Skirt Distance"
@ -4776,6 +4806,16 @@ msgctxt "brim_inside_margin description"
msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "raft_margin label"
msgid "Raft Extra Margin"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: 2022-07-15 10:53+0200\n"
"Last-Translator: Bothof <info@bothof.nl>\n"
"Language-Team: Finnish\n"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: 2022-07-15 11:17+0200\n"
"Last-Translator: Bothof <info@bothof.nl>\n"
"Language-Team: Finnish\n"
@ -1636,6 +1636,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr ""
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3176,6 +3181,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "Alkukerroksen tulostuslämpötila"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3661,6 +3671,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "Helman etäisyys"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3732,6 +3747,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "Tulostuslämpötila lopussa"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3742,6 +3762,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr ""
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4270,6 +4300,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6309,6 +6344,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr ""
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n"
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr "Expansion horizontale des trous"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "Température dimpression couche initiale"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "Distance de la jupe"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3733,6 +3748,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "Température d'impression pour couches fines"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3743,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr "Les petites structures seront imprimées à ce pourcentage de la vitesse d'impression normale. Une impression plus lente peut aider à l'adhésion et à la précision."
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4268,6 +4298,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "Énergie de la surface."
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6307,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr "Lorsque cette distance est supérieure à zéro, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction. Si elle est définie sur zéro, il n'y a pas de maximum et les mouvements de détour n'utiliseront pas la rétraction."
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: 2020-03-24 09:36+0100\n"
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
"Language-Team: ATI-SZOFT\n"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: 2020-03-24 09:43+0100\n"
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
"Language-Team: AT-VLOG\n"
@ -1641,6 +1641,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr ""
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3181,6 +3186,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "Kezdő réteg nyomtatási hőmérséklete"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3666,6 +3676,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "Szoknya távolság"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3737,6 +3752,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "Befejező nyomtatási hőmérséklet"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3747,6 +3767,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr ""
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4275,6 +4305,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "Felületi energia."
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6319,6 +6354,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr ""
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n"
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr "Espansione orizzontale dei fori"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "Temperatura di stampa Strato iniziale"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "Distanza dello skirt"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3733,6 +3748,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "Temperatura di stampa per piccoli strati"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3743,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr "I dettagli di piccole dimensioni verranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione."
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4268,6 +4298,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "Energia superficiale."
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6307,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr "Per un valore superiore a zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione. Se il valore impostato è zero, non è presente un valore massimo e le corse in modalità combing non utilizzeranno la retrazione."
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n"
@ -1636,6 +1636,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr "穴の水平展開"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "初期レイヤー印刷温度"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "スカート距離"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3733,6 +3748,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "最終印刷温度"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3743,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr "小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。"
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4268,6 +4298,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "表面エネルギー。"
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6309,6 +6344,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr "ゼロを超える場合、この距離より長い移動量をコーミングすると、引き戻しが使用されます。ゼロに設定した場合、最大値はなく、コーミング移動では引き戻しを使用しません。"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n"
@ -1636,6 +1636,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr "구멍 수평 확장"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3176,6 +3181,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "첫번째 레이어의 프린팅 온도"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3661,6 +3671,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "스커트 거리"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3731,6 +3746,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "소형 레이어 프린팅 온도"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3741,6 +3761,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr "소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다."
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4266,6 +4296,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "표면의 에너지입니다."
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6305,6 +6340,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr "0보다 큰 경우 이 거리보다 긴 combing travel은 retraction을 사용합니다. 0으로 설정한 경우 최댓값이 없으며 combing travel은 retraction을 사용하지 않습니다."
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n"
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr "Horizontale uitbreiding gaten"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "Printtemperatuur van de eerste laag"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "Skirtafstand"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3733,6 +3748,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "De printtemperatuur van kleine lagens"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3743,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr "Kleine kernmerken worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid. Langzamer printen kan de hechting en nauwkeurigheid verbeteren."
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4268,6 +4298,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "Oppervlakte-energie."
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6307,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr "Wanneer dit groter dan nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats. Wanneer dit nul is, is er geen maximum en vindt bij combing-bewegingen geen intrekking plaats."
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: 2021-09-07 08:02+0200\n"
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: 2019-11-15 15:34+0100\n"
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
@ -1642,6 +1642,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr ""
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3182,6 +3187,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "Temp. Druku Początk. Warstwy"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3667,6 +3677,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "Odległ. Obwódki"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3738,6 +3753,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "Końcowa Temp. Druku"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3748,6 +3768,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr "Małe obiekty zostaną wydrukowane z zadanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może poprawić przyczepność i dokładność."
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4276,6 +4306,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "Energia powierzchni."
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6320,6 +6355,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr ""
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: 2023-02-17 17:37+0100\n"
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.0\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: 2023-02-17 16:31+0100\n"
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
@ -1643,6 +1643,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr "Expansão Horizontal do Furo"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3183,6 +3188,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "Temperatura de Impressão da Camada Inicial"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3668,6 +3678,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "Distância do Skirt"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3739,6 +3754,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "Temperatura de Impressão Final"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3749,6 +3769,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr "Aspectos pequenos serão impressos nessa porcentagem da velocidade normal. Impressão mais lenta pode ajudar com aderência e precisão."
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4277,6 +4307,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "Energia de superfície."
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6321,6 +6356,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr "Quando maior que zero, os movimentos de percurso de combing que forem maiores que essa distância usarão retração. Se deixado em zero, não haverá máximo e os movimentos de combing não usarão retração."
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n"
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr "Expansão horizontal de buraco"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "Temperatura Impressão Camada Inicial"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "Distância Contorno"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3733,6 +3748,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "Temperatura de impressão de camada pequena"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3743,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr "Os elementos pequenos serão impressos a esta percentagem da respetiva velocidade de impressão normal. Uma impressão mais lenta pode ajudar em termos de aderência e precisão."
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4268,6 +4298,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "Energia da superfície."
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6307,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações. Se o valor for definido como zero, não existirá qualquer valor máximo e os movimentos Combing não utilizarão retrações."
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n"
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr "Горизонтальное расширение отверстия"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "Температура печати первого слоя"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "Дистанция до юбки"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3733,6 +3748,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "Температура малослойной печати"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3743,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность."
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4268,6 +4298,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "Поверхностная энергия."
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6307,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю, то максимума нет и перемещения комбинга выполняются без отката."
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n"
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr "Delik Yatay Büyüme"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "İlk Katman Yazdırma Sıcaklığı"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "Etek Mesafesi"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3733,6 +3748,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "Küçük Katmanlı Baskı Sıcaklığı"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3743,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr "Küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir."
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4268,6 +4298,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "Yüzey enerjisi."
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6307,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr "Sıfırdan büyük olduğunda, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır. Sıfıra ayarlandığında, bir maksimum belirlenmez ve tarama hareketlerinde geri çekme kullanılmaz."
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: 2022-07-15 11:06+0200\n"
"Last-Translator: \n"
"Language-Team: \n"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n"
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr "孔洞水平扩展"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "打印温度起始层"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "Skirt 距离"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3733,6 +3748,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "小型层打印温度"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3743,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr "微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。"
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4268,6 +4298,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "表面能。"
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6307,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr "当大于零时,比这段距离更长的梳理空驶将会使用回抽。如果设置为零,则没有最大值,梳理空驶将不会使用回抽。"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
"PO-Revision-Date: 2022-01-02 19:59+0800\n"
"Last-Translator: Valen Chang <carf17771@gmail.com>\n"
"Language-Team: Valen Chang <carf17771@gmail.com>\n"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
"PO-Revision-Date: 2022-01-02 20:24+0800\n"
"Last-Translator: Valen Chang <carf17771@gmail.com>\n"
"Language-Team: Valen Chang <carf17771@gmail.com>\n"
@ -1643,6 +1643,11 @@ msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr "孔洞水平擴展"
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -3183,6 +3188,11 @@ msgctxt "material_print_temperature_layer_0 label"
msgid "Printing Temperature Initial Layer"
msgstr "列印溫度起始層"
#: fdmprinter.def.json
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -3668,6 +3678,11 @@ msgctxt "skirt_gap label"
msgid "Skirt Distance"
msgstr "外圍間距"
#: fdmprinter.def.json
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
#: fdmprinter.def.json
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3739,6 +3754,11 @@ msgctxt "cool_min_temperature label"
msgid "Small Layer Printing Temperature"
msgstr "最終列印溫度"
#: fdmprinter.def.json
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
#: fdmprinter.def.json
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3749,6 +3769,16 @@ msgctxt "small_feature_speed_factor description"
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
msgstr "細部模式將以正常列印速度的此百分比值列印。 較慢的列印有助於黏合和精度。"
#: fdmprinter.def.json
msgctxt "small_skin_width description"
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
msgstr ""
#: fdmprinter.def.json
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
#: fdmprinter.def.json
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -4277,6 +4307,11 @@ msgctxt "material_surface_energy description"
msgid "Surface energy."
msgstr "表面能量。"
#: fdmprinter.def.json
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
#: fdmprinter.def.json
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -6321,6 +6356,11 @@ msgctxt "retraction_combing_max_distance description"
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr "觸發回抽時之最小距離如大於此數值便開啟回抽如設置為0則關閉回抽."
#: fdmprinter.def.json
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
#: fdmprinter.def.json
msgctxt "bridge_skin_material_flow description"
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -0,0 +1,616 @@
# Exported from 3D Builder
mtllib Hellbot_Magna_SE_300.mtl
o Object.1
v -155.000000 -150.000015 2.000102 188 188 188
v -154.938446 -150.782181 0.000102 188 188 188
v -154.938446 -150.782181 2.000102 188 188 188
v -154.755280 -151.545090 0.000103 188 188 188
v -152.938919 -154.045090 2.000104 188 188 188
v -152.269958 -154.455063 0.000105 188 188 188
v -151.545090 -154.755325 0.000105 188 188 188
v -150.782166 -154.938431 0.000105 188 188 188
v -150.782166 -154.938431 2.000105 188 188 188
v -150.000000 -155.000015 0.000105 188 188 188
v 151.545074 -154.755325 0.000105 188 188 188
v 151.545074 -154.755325 2.000105 188 188 188
v 152.269958 -154.455063 0.000105 188 188 188
v 152.938934 -154.045090 0.000104 188 188 188
v 152.269958 -154.455063 2.000105 188 188 188
v 152.938934 -154.045090 2.000104 188 188 188
v 154.045074 -152.938950 0.000104 188 188 188
v 154.045074 -152.938950 2.000104 188 188 188
v 154.455048 -152.269974 0.000103 188 188 188
v 154.455048 -152.269974 2.000103 188 188 188
v 154.755310 -151.545090 0.000103 188 188 188
v 154.938416 150.782181 -0.000102 188 188 188
v 154.755310 151.545105 1.999897 188 188 188
v 154.455048 152.269974 1.999897 188 188 188
v 154.045074 152.938934 -0.000104 188 188 188
v 154.045074 152.938950 1.999897 188 188 188
v 153.535553 153.535553 -0.000104 188 188 188
v 152.938934 154.045105 -0.000104 188 188 188
v 152.938934 154.045105 1.999896 188 188 188
v 152.269958 154.455048 1.999896 188 188 188
v 151.545074 154.755295 1.999895 188 188 188
v 150.000000 155.000015 -0.000105 188 188 188
v 150.000000 155.000015 1.999895 188 188 188
v -150.782166 154.938461 -0.000105 188 188 188
v -150.782166 154.938461 1.999895 188 188 188
v -152.269958 154.455048 -0.000105 188 188 188
v -152.938919 154.045105 1.999896 188 188 188
v -153.535538 153.535553 1.999896 188 188 188
v -153.535538 153.535553 -0.000104 188 188 188
v -154.755280 151.545105 -0.000103 188 188 188
v -154.755280 151.545105 1.999897 188 188 188
v -154.938446 150.782181 -0.000102 188 188 188
v -155.000000 150.000015 1.999898 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
v -155.000000 150.000015 -0.000102 188 188 188
v 150.000000 -155.000015 2.000105 188 188 188
v 150.782166 -154.938431 2.000105 188 188 188
v -150.000000 155.000015 1.999895 188 188 188
v -152.269958 -154.455063 2.000105 188 188 188
v -151.545090 -154.755325 2.000105 188 188 188
v -150.000000 -155.000015 2.000105 188 188 188
v 153.535553 -153.535568 2.000104 188 188 188
v 154.755310 -151.545090 2.000103 188 188 188
v 154.938416 -150.782181 2.000102 188 188 188
v 155.000000 -150.000015 2.000102 188 188 188
v 154.938416 150.782196 1.999898 188 188 188
v 153.535553 153.535553 1.999896 188 188 188
v 155.000000 150.000015 1.999898 188 188 188
v 150.782166 154.938461 1.999895 188 188 188
v -151.545090 154.755295 1.999895 188 188 188
v -152.269958 154.455048 1.999896 188 188 188
v -153.535538 -153.535568 2.000104 188 188 188
v -154.045090 152.938950 1.999897 188 188 188
v -154.755280 -151.545090 2.000103 188 188 188
v -154.455032 -152.269974 2.000103 188 188 188
v -154.045090 -152.938950 2.000104 188 188 188
v -154.455032 152.269974 1.999897 188 188 188
v -154.938446 150.782196 1.999898 188 188 188
v 153.535553 -153.535568 0.000104 188 188 188
v 155.000000 -150.000015 0.000102 188 188 188
v 154.938416 -150.782181 0.000102 188 188 188
v 150.000000 -155.000015 0.000105 188 188 188
v 150.782166 -154.938431 0.000105 188 188 188
v -151.545090 154.755295 -0.000105 188 188 188
v -150.000000 155.000015 -0.000105 188 188 188
v 150.782166 154.938461 -0.000105 188 188 188
v -152.938919 -154.045090 0.000104 188 188 188
v -153.535538 -153.535568 0.000104 188 188 188
v -154.455032 152.269974 -0.000103 188 188 188
v -154.045090 152.938934 -0.000104 188 188 188
v -154.045090 -152.938950 0.000104 188 188 188
v -154.455032 -152.269974 0.000103 188 188 188
v -152.938919 154.045105 -0.000104 188 188 188
v 151.545074 154.755295 -0.000105 188 188 188
v 152.269958 154.455048 -0.000105 188 188 188
v 155.000000 150.000015 -0.000102 188 188 188
v 154.455048 152.269974 -0.000103 188 188 188
v 154.755310 151.545105 -0.000103 188 188 188
v -155.000000 -150.000015 2.000102 188 188 188
v -154.938446 -150.782181 0.000102 188 188 188
v 155.000000 -150.000015 2.000102 188 188 188
v 155.000000 -150.000015 0.000102 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
v 155.000000 150.000015 -0.000102 188 188 188
v 155.000000 -150.000015 0.000102 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
v 155.000000 -150.000015 0.000102 188 188 188
v 150.000000 -155.000015 0.000105 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
v -150.000000 -155.000015 0.000105 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
v -150.782166 -154.938431 0.000105 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
v -151.545090 -154.755325 0.000105 188 188 188
v -152.269958 -154.455063 0.000105 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
v -152.938919 -154.045090 0.000104 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
v -153.535538 -153.535568 0.000104 188 188 188
v -154.045090 -152.938950 0.000104 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
v -154.455032 -152.269974 0.000103 188 188 188
v -154.755280 -151.545090 0.000103 188 188 188
v -154.455032 -152.269974 0.000103 188 188 188
v -154.455032 -152.269974 0.000103 188 188 188
v -154.045090 -152.938950 0.000104 188 188 188
v -154.045090 -152.938950 0.000104 188 188 188
v -153.535538 -153.535568 0.000104 188 188 188
v -153.535538 -153.535568 0.000104 188 188 188
v -152.938919 -154.045090 0.000104 188 188 188
v -152.938919 -154.045090 0.000104 188 188 188
v -152.269958 -154.455063 0.000105 188 188 188
v -152.269958 -154.455063 0.000105 188 188 188
v -151.545090 -154.755325 0.000105 188 188 188
v -151.545090 -154.755325 0.000105 188 188 188
v -150.782166 -154.938431 0.000105 188 188 188
v -150.782166 -154.938431 0.000105 188 188 188
v -150.000000 -155.000015 0.000105 188 188 188
v 150.000000 -155.000015 0.000105 188 188 188
v -150.000000 -155.000015 0.000105 188 188 188
v 150.000000 -155.000015 0.000105 188 188 188
v 155.000000 -150.000015 0.000102 188 188 188
v 150.000000 -155.000015 0.000105 188 188 188
v 154.938416 -150.782181 0.000102 188 188 188
v 154.755310 -151.545090 0.000103 188 188 188
v 150.000000 -155.000015 0.000105 188 188 188
v 150.000000 -155.000015 0.000105 188 188 188
v 154.455048 -152.269974 0.000103 188 188 188
v 150.000000 -155.000015 0.000105 188 188 188
v 154.045074 -152.938950 0.000104 188 188 188
v 153.535553 -153.535568 0.000104 188 188 188
v 150.000000 -155.000015 0.000105 188 188 188
v 152.938934 -154.045090 0.000104 188 188 188
v 150.000000 -155.000015 0.000105 188 188 188
v 150.000000 -155.000015 0.000105 188 188 188
v 150.782166 -154.938431 0.000105 188 188 188
v 152.938934 -154.045090 0.000104 188 188 188
v 150.782166 -154.938431 0.000105 188 188 188
v 150.782166 -154.938431 0.000105 188 188 188
v 151.545074 -154.755325 0.000105 188 188 188
v 151.545074 -154.755325 0.000105 188 188 188
v 152.938934 -154.045090 0.000104 188 188 188
v 152.269958 -154.455063 0.000105 188 188 188
v 152.938934 -154.045090 0.000104 188 188 188
v 151.545074 -154.755325 0.000105 188 188 188
v 152.269958 -154.455063 0.000105 188 188 188
v 152.938934 -154.045090 0.000104 188 188 188
v 153.535553 -153.535568 0.000104 188 188 188
v 153.535553 -153.535568 0.000104 188 188 188
v 154.045074 -152.938950 0.000104 188 188 188
v 154.045074 -152.938950 0.000104 188 188 188
v 154.455048 -152.269974 0.000103 188 188 188
v 154.045074 -152.938950 2.000104 188 188 188
v 154.455048 -152.269974 0.000103 188 188 188
v 154.455048 -152.269974 2.000103 188 188 188
v 154.755310 -151.545090 0.000103 188 188 188
v 154.455048 -152.269974 2.000103 188 188 188
v 154.455048 -152.269974 0.000103 188 188 188
v 154.755310 -151.545090 0.000103 188 188 188
v 154.755310 -151.545090 2.000103 188 188 188
v 154.755310 -151.545090 0.000103 188 188 188
v 154.938416 -150.782181 0.000102 188 188 188
v 154.755310 -151.545090 2.000103 188 188 188
v 154.938416 -150.782181 0.000102 188 188 188
v 154.938416 -150.782181 2.000102 188 188 188
v 155.000000 150.000015 -0.000102 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
v -155.000000 150.000015 -0.000102 188 188 188
v -155.000000 150.000015 -0.000102 188 188 188
v -155.000000 150.000015 1.999898 188 188 188
v -152.938919 154.045105 1.999896 188 188 188
v -152.938919 154.045105 -0.000104 188 188 188
v -152.938919 154.045105 1.999896 188 188 188
v -153.535538 153.535553 -0.000104 188 188 188
v -153.535538 153.535553 1.999896 188 188 188
v -154.045090 152.938950 1.999897 188 188 188
v -154.045090 152.938934 -0.000104 188 188 188
v -154.045090 152.938950 1.999897 188 188 188
v -154.455032 152.269974 -0.000103 188 188 188
v -154.455032 152.269974 1.999897 188 188 188
v -154.455032 152.269974 -0.000103 188 188 188
v -154.455032 152.269974 1.999897 188 188 188
v -154.755280 151.545105 -0.000103 188 188 188
v -154.755280 151.545105 1.999897 188 188 188
v -154.755280 151.545105 -0.000103 188 188 188
v -154.755280 151.545105 1.999897 188 188 188
v -154.938446 150.782181 -0.000102 188 188 188
v -154.938446 150.782196 1.999898 188 188 188
v -152.938919 154.045105 -0.000104 188 188 188
v -154.938446 150.782181 -0.000102 188 188 188
v -154.755280 151.545105 -0.000103 188 188 188
v -152.938919 154.045105 -0.000104 188 188 188
v -155.000000 150.000015 -0.000102 188 188 188
v -154.938446 150.782181 -0.000102 188 188 188
v -155.000000 150.000015 -0.000102 188 188 188
v -152.938919 154.045105 -0.000104 188 188 188
v -155.000000 150.000015 -0.000102 188 188 188
v -152.269958 154.455048 -0.000105 188 188 188
v -151.545090 154.755295 -0.000105 188 188 188
v -155.000000 150.000015 -0.000102 188 188 188
v -155.000000 150.000015 -0.000102 188 188 188
v -150.782166 154.938461 -0.000105 188 188 188
v -150.000000 155.000015 -0.000105 188 188 188
v -150.782166 154.938461 -0.000105 188 188 188
v -150.000000 155.000015 1.999895 188 188 188
v -150.782166 154.938461 -0.000105 188 188 188
v -150.782166 154.938461 1.999895 188 188 188
v -151.545090 154.755295 -0.000105 188 188 188
v 150.782166 154.938461 1.999895 188 188 188
v 150.782166 154.938461 -0.000105 188 188 188
v 155.000000 150.000015 -0.000102 188 188 188
v 150.000000 155.000015 -0.000105 188 188 188
v 150.782166 154.938461 -0.000105 188 188 188
v 150.782166 154.938461 -0.000105 188 188 188
v 155.000000 150.000015 -0.000102 188 188 188
v 155.000000 150.000015 -0.000102 188 188 188
v 151.545074 154.755295 -0.000105 188 188 188
v 155.000000 150.000015 -0.000102 188 188 188
v 152.269958 154.455048 -0.000105 188 188 188
v 152.938934 154.045105 -0.000104 188 188 188
v 155.000000 150.000015 -0.000102 188 188 188
v 155.000000 150.000015 -0.000102 188 188 188
v 153.535553 153.535553 -0.000104 188 188 188
v 155.000000 150.000015 -0.000102 188 188 188
v 154.045074 152.938934 -0.000104 188 188 188
v 155.000000 150.000015 -0.000102 188 188 188
v 154.938416 150.782181 -0.000102 188 188 188
v 155.000000 150.000015 1.999898 188 188 188
v 154.938416 150.782181 -0.000102 188 188 188
v 152.269958 154.455048 -0.000105 188 188 188
v 152.938934 154.045105 -0.000104 188 188 188
v 152.938934 154.045105 1.999896 188 188 188
v 153.535553 153.535553 -0.000104 188 188 188
v 153.535553 153.535553 1.999896 188 188 188
v 154.045074 152.938934 -0.000104 188 188 188
v 154.045074 152.938950 1.999897 188 188 188
v 154.455048 152.269974 1.999897 188 188 188
v 154.045074 152.938934 -0.000104 188 188 188
v 154.455048 152.269974 -0.000103 188 188 188
v 154.455048 152.269974 1.999897 188 188 188
v 154.755310 151.545105 1.999897 188 188 188
v 154.455048 152.269974 -0.000103 188 188 188
v 154.938416 150.782181 -0.000102 188 188 188
v 154.455048 152.269974 -0.000103 188 188 188
v 154.755310 151.545105 -0.000103 188 188 188
v 154.938416 150.782196 1.999898 188 188 188
v 154.755310 151.545105 -0.000103 188 188 188
v 154.755310 151.545105 1.999897 188 188 188
v 154.938416 150.782196 1.999898 188 188 188
v 154.938416 150.782181 -0.000102 188 188 188
v 154.755310 151.545105 -0.000103 188 188 188
v 154.938416 150.782181 -0.000102 188 188 188
v 154.045074 152.938934 -0.000104 188 188 188
v 154.455048 152.269974 -0.000103 188 188 188
v 154.045074 152.938950 1.999897 188 188 188
v 154.045074 152.938934 -0.000104 188 188 188
v 153.535553 153.535553 -0.000104 188 188 188
v 153.535553 153.535553 1.999896 188 188 188
v 153.535553 153.535553 -0.000104 188 188 188
v 152.938934 154.045105 -0.000104 188 188 188
v 152.938934 154.045105 1.999896 188 188 188
v 152.938934 154.045105 -0.000104 188 188 188
v 152.269958 154.455048 -0.000105 188 188 188
v 152.269958 154.455048 1.999896 188 188 188
v 152.269958 154.455048 -0.000105 188 188 188
v 151.545074 154.755295 -0.000105 188 188 188
v 152.269958 154.455048 1.999896 188 188 188
v 151.545074 154.755295 -0.000105 188 188 188
v 151.545074 154.755295 1.999895 188 188 188
v 155.000000 150.000015 -0.000102 188 188 188
v -150.000000 155.000015 -0.000105 188 188 188
v 150.000000 155.000015 -0.000105 188 188 188
v -150.000000 155.000015 -0.000105 188 188 188
v 150.000000 155.000015 -0.000105 188 188 188
v 151.545074 154.755295 1.999895 188 188 188
v 151.545074 154.755295 -0.000105 188 188 188
v 150.782166 154.938461 -0.000105 188 188 188
v 150.782166 154.938461 1.999895 188 188 188
v 150.000000 155.000015 -0.000105 188 188 188
v 150.000000 155.000015 1.999895 188 188 188
v -150.000000 155.000015 1.999895 188 188 188
v 150.000000 155.000015 1.999895 188 188 188
v -150.000000 155.000015 -0.000105 188 188 188
v -150.782166 154.938461 1.999895 188 188 188
v -150.782166 154.938461 -0.000105 188 188 188
v -151.545090 154.755295 -0.000105 188 188 188
v -151.545090 154.755295 1.999895 188 188 188
v -151.545090 154.755295 -0.000105 188 188 188
v -152.269958 154.455048 -0.000105 188 188 188
v -151.545090 154.755295 1.999895 188 188 188
v -152.269958 154.455048 -0.000105 188 188 188
v -152.269958 154.455048 1.999896 188 188 188
v -154.755280 151.545105 -0.000103 188 188 188
v -154.455032 152.269974 -0.000103 188 188 188
v -152.938919 154.045105 -0.000104 188 188 188
v -152.938919 154.045105 -0.000104 188 188 188
v -154.455032 152.269974 -0.000103 188 188 188
v -154.045090 152.938934 -0.000104 188 188 188
v -153.535538 153.535553 1.999896 188 188 188
v -153.535538 153.535553 -0.000104 188 188 188
v -154.045090 152.938934 -0.000104 188 188 188
v -152.938919 154.045105 -0.000104 188 188 188
v -154.045090 152.938934 -0.000104 188 188 188
v -153.535538 153.535553 -0.000104 188 188 188
v -152.269958 154.455048 1.999896 188 188 188
v -152.269958 154.455048 -0.000105 188 188 188
v -152.938919 154.045105 -0.000104 188 188 188
v -154.938446 150.782196 1.999898 188 188 188
v -154.938446 150.782181 -0.000102 188 188 188
v -155.000000 150.000015 -0.000102 188 188 188
v -155.000000 150.000015 -0.000102 188 188 188
v -150.000000 155.000015 -0.000105 188 188 188
v 155.000000 150.000015 -0.000102 188 188 188
v 155.000000 150.000015 1.999898 188 188 188
v 155.000000 -150.000015 2.000102 188 188 188
v 155.000000 150.000015 -0.000102 188 188 188
v 154.938416 -150.782181 2.000102 188 188 188
v 154.938416 -150.782181 0.000102 188 188 188
v 155.000000 -150.000015 0.000102 188 188 188
v 153.535553 -153.535568 2.000104 188 188 188
v 154.045074 -152.938950 0.000104 188 188 188
v 154.045074 -152.938950 2.000104 188 188 188
v 152.938934 -154.045090 2.000104 188 188 188
v 153.535553 -153.535568 0.000104 188 188 188
v 153.535553 -153.535568 2.000104 188 188 188
v 152.269958 -154.455063 2.000105 188 188 188
v 152.938934 -154.045090 0.000104 188 188 188
v 152.938934 -154.045090 2.000104 188 188 188
v 151.545074 -154.755325 2.000105 188 188 188
v 152.269958 -154.455063 0.000105 188 188 188
v 152.269958 -154.455063 2.000105 188 188 188
v 150.782166 -154.938431 2.000105 188 188 188
v 151.545074 -154.755325 0.000105 188 188 188
v 151.545074 -154.755325 2.000105 188 188 188
v 150.000000 -155.000015 2.000105 188 188 188
v 150.782166 -154.938431 0.000105 188 188 188
v 150.782166 -154.938431 2.000105 188 188 188
v 150.000000 -155.000015 2.000105 188 188 188
v -150.000000 -155.000015 2.000105 188 188 188
v 150.000000 -155.000015 0.000105 188 188 188
v -150.782166 -154.938431 2.000105 188 188 188
v -150.000000 -155.000015 0.000105 188 188 188
v -150.000000 -155.000015 2.000105 188 188 188
v -151.545090 -154.755325 2.000105 188 188 188
v -150.782166 -154.938431 0.000105 188 188 188
v -150.782166 -154.938431 2.000105 188 188 188
v -152.269958 -154.455063 2.000105 188 188 188
v -151.545090 -154.755325 0.000105 188 188 188
v -151.545090 -154.755325 2.000105 188 188 188
v -152.938919 -154.045090 2.000104 188 188 188
v -152.269958 -154.455063 0.000105 188 188 188
v -152.269958 -154.455063 2.000105 188 188 188
v -153.535538 -153.535568 2.000104 188 188 188
v -152.938919 -154.045090 0.000104 188 188 188
v -152.938919 -154.045090 2.000104 188 188 188
v -154.045090 -152.938950 2.000104 188 188 188
v -153.535538 -153.535568 0.000104 188 188 188
v -153.535538 -153.535568 2.000104 188 188 188
v -154.455032 -152.269974 2.000103 188 188 188
v -154.045090 -152.938950 0.000104 188 188 188
v -154.045090 -152.938950 2.000104 188 188 188
v -154.755280 -151.545090 2.000103 188 188 188
v -154.455032 -152.269974 0.000103 188 188 188
v -154.455032 -152.269974 2.000103 188 188 188
v -154.938446 -150.782181 2.000102 188 188 188
v -154.755280 -151.545090 0.000103 188 188 188
v -154.755280 -151.545090 2.000103 188 188 188
v -154.938446 -150.782181 2.000102 188 188 188
v -154.938446 -150.782181 0.000102 188 188 188
v -154.755280 -151.545090 0.000103 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
v -154.755280 -151.545090 0.000103 188 188 188
v -154.938446 -150.782181 0.000102 188 188 188
v -155.000000 -150.000015 2.000102 188 188 188
v -155.000000 150.000015 1.999898 188 188 188
v -155.000000 -150.000015 0.000102 188 188 188
f 1 44 2
f 89 90 3
f 54 70 55
f 86 91 92
f 93 94 95
f 96 97 72
f 98 10 99
f 100 8 101
f 102 103 7
f 104 105 6
f 106 77 107
f 108 109 78
f 110 111 81
f 112 82 113
f 114 115 4
f 64 116 117
f 65 118 119
f 66 120 121
f 62 122 123
f 5 124 125
f 49 126 127
f 50 128 129
f 9 130 131
f 132 51 133
f 134 135 71
f 136 137 21
f 138 19 139
f 140 141 17
f 142 143 69
f 144 14 145
f 146 73 147
f 46 148 149
f 150 11 151
f 47 152 153
f 13 154 155
f 15 156 157
f 12 158 159
f 16 160 161
f 52 162 163
f 18 164 165
f 166 167 20
f 168 169 53
f 170 171 172
f 173 174 175
f 176 177 178
f 45 179 180
f 181 43 182
f 68 183 184
f 61 83 37
f 185 186 39
f 187 188 38
f 189 80 63
f 190 191 79
f 192 193 67
f 194 195 40
f 196 197 41
f 198 199 42
f 200 201 202
f 203 204 205
f 206 207 208
f 36 209 210
f 211 212 74
f 213 34 214
f 215 216 75
f 48 217 218
f 219 220 35
f 221 222 60
f 31 76 59
f 223 224 32
f 225 226 227
f 228 84 229
f 230 231 85
f 232 233 28
f 234 27 235
f 236 237 25
f 238 239 22
f 58 240 241
f 242 243 56
f 29 244 30
f 57 245 246
f 26 247 248
f 24 249 250
f 251 87 252
f 23 253 254
f 255 88 256
f 257 258 259
f 260 261 262
f 263 264 265
f 266 267 268
f 269 270 271
f 272 273 274
f 275 276 277
f 278 279 280
f 281 282 283
f 284 285 286
f 287 33 288
f 289 290 291
f 292 293 294
f 295 296 297
f 298 299 300
f 301 302 303
f 304 305 306
f 307 308 309
f 310 311 312
f 313 314 315
f 316 317 318
f 319 320 321
f 322 323 324
f 325 326 327
f 328 329 330
f 331 332 333
f 334 335 336
f 337 338 339
f 340 341 342
f 343 344 345
f 346 347 348
f 349 350 351
f 352 353 354
f 355 356 357
f 358 359 360
f 361 362 363
f 364 365 366
f 367 368 369
f 370 371 372
f 373 374 375
f 376 377 378
f 379 380 381
f 382 383 384
f 385 386 387
f 388 389 390
vt 1.000000 0.983871
vt 0.000000 0.983871
vt 1.000000 0.016129
vt 0.983871 1.000000
vt 0.016129 1.000000
vt 0.013606 1.000000
vt 0.011145 1.000000
vt 0.008807 0.996774
vt 0.006649 0.996774
vt 0.000199 0.987097
vt 0.000789 0.990323
vt 0.001758 0.990323
vt 0.003080 0.993548
vt 0.004724 0.996774
vt 0.986394 1.000000
vt 0.988855 1.000000
vt 0.991193 0.996774
vt 0.993351 0.996774
vt 0.995276 0.996774
vt 0.996920 0.993548
vt 0.999801 0.987097
vt 0.998242 0.990323
vt 0.999211 0.990323
vt 0.000000 0.016129
vt 0.016129 0.000000
vt 0.013606 0.000000
vt 0.011145 0.000000
vt 0.008807 0.003226
vt 0.006649 0.003226
vt 0.004724 0.003226
vt 0.003080 0.006452
vt 0.001758 0.009677
vt 0.000789 0.009677
vt 0.000199 0.012903
vt 0.983871 0.000000
vt 0.986394 0.000000
vt 0.988855 0.000000
vt 0.991193 0.003226
vt 0.993351 0.003226
vt 0.995276 0.003226
vt 0.996920 0.006452
vt 0.999801 0.012903
vt 0.999211 0.009677
vt 0.998242 0.009677
usemtl Mat_0
f 3/34 64/33 1/24
f 1/24 64/33 65/32
f 1/24 65/32 66/31
f 66/31 62/30 1/24
f 1/24 62/30 5/29
f 1/24 5/29 49/28
f 49/28 50/27 1/24
f 1/24 50/27 9/26
f 1/24 9/26 51/25
f 55/3 1/24 51/25
f 51/25 46/35 55/3
f 55/3 46/35 47/36
f 55/3 47/36 12/37
f 12/37 15/38 55/3
f 55/3 15/38 16/39
f 55/3 16/39 52/40
f 52/40 18/41 55/3
f 18/41 54/42 55/3
f 20/44 53/43 18/41
f 37/9 68/10 43/2
f 43/2 61/8 37/9
f 63/13 37/9 38/14
f 67/12 41/11 37/9
f 43/2 48/5 35/6
f 35/6 60/7 43/2
f 43/2 33/4 48/5
f 58/1 33/4 43/2
f 58/1 43/2 55/3
f 59/15 33/4 58/1
f 58/1 31/16 59/15
f 56/21 26/20 58/1
f 58/1 26/20 57/19
f 58/1 57/19 29/18
f 29/18 30/17 58/1
f 56/21 24/22 26/20
f 23/23 24/22 56/21
f 58/1 30/17 31/16
f 67/12 37/9 63/13
f 43/2 60/7 61/8
f 37/9 41/11 68/10
f 18/41 53/43 54/42
f 55/3 43/2 1/24

View File

@ -0,0 +1,924 @@
# Exported from 3D Builder
mtllib Hellbot_Magna_SE_Pro.mtl
o Object.1
v 112.500000 117.499786 1.999997 188 188 188
v -112.500008 117.499786 1.999997 188 188 188
v -117.500000 112.499794 0.000008 188 188 188
v -112.500008 117.499786 0.000000 188 188 188
v -71.801117 -118.044769 0.000402 188 188 188
v -71.132141 -118.454727 0.000402 188 188 188
v -70.535538 -118.964279 0.000403 188 188 188
v 71.321274 -118.163330 0.000402 188 188 188
v 72.108124 -117.798447 0.000401 188 188 188
v 72.946182 -117.575027 2.000398 188 188 188
v 73.810242 -117.499802 2.000398 188 188 188
v 73.810242 -117.499802 0.000401 188 188 188
v 117.500000 -112.499817 0.000392 188 188 188
v 117.438446 -113.281998 0.000393 188 188 188
v 112.500000 -117.499802 0.000401 188 188 188
v 117.438446 -113.281998 2.000391 188 188 188
v 117.500000 -112.499817 2.000390 188 188 188
v 117.500000 112.499794 0.000008 188 188 188
v 117.500000 112.499794 2.000005 188 188 188
v 117.438446 113.281960 0.000007 188 188 188
v 117.438446 113.281960 2.000005 188 188 188
v 117.255280 114.044876 2.000002 188 188 188
v 116.955032 114.769745 0.000005 188 188 188
v 116.955032 114.769745 2.000001 188 188 188
v 116.545074 115.438713 2.000000 188 188 188
v 116.035522 116.035316 2.000000 188 188 188
v 116.035522 116.035316 0.000002 188 188 188
v 115.438919 116.544868 0.000001 188 188 188
v 115.438919 116.544868 1.999998 188 188 188
v 114.769943 116.954811 0.000001 188 188 188
v 114.045090 117.255066 1.999997 188 188 188
v 114.769943 116.954819 1.999997 188 188 188
v 113.282166 117.438225 0.000000 188 188 188
v 71.321274 -118.163330 2.000400 188 188 188
v 58.189739 -127.499786 0.000418 188 188 188
v 70.609329 -118.658691 0.000403 188 188 188
v 60.678722 -126.836258 0.000417 188 188 188
v 59.891872 -127.201157 0.000417 188 188 188
v 61.390667 -126.340897 0.000416 188 188 188
v 61.390667 -126.340897 2.000413 188 188 188
v -114.769958 116.954819 1.999997 188 188 188
v -115.438934 116.544868 0.000001 188 188 188
v -115.438934 116.544868 1.999998 188 188 188
v -116.035538 116.035316 0.000002 188 188 188
v -116.545090 115.438713 0.000003 188 188 188
v -116.545090 115.438713 2.000000 188 188 188
v -116.955032 114.769745 2.000001 188 188 188
v -117.255287 114.044876 2.000002 188 188 188
v -117.438446 113.281960 0.000007 188 188 188
v -117.255287 114.044876 0.000005 188 188 188
v -117.438446 113.281960 2.000005 188 188 188
v -117.500000 112.499794 2.000005 188 188 188
v -116.955032 114.769745 0.000005 188 188 188
v -116.035538 116.035316 2.000000 188 188 188
v -114.045090 117.255066 1.999997 188 188 188
v -114.769958 116.954811 0.000001 188 188 188
v -117.500000 -112.499817 2.000390 188 188 188
v -117.500000 -112.499817 0.000392 188 188 188
v -117.438446 -113.281998 0.000393 188 188 188
v -117.438446 -113.281998 2.000391 188 188 188
v -117.255287 -114.044907 0.000395 188 188 188
v -74.071075 -117.499802 0.000401 188 188 188
v -116.955032 -114.769775 2.000393 188 188 188
v -117.255287 -114.044907 2.000392 188 188 188
v -116.545090 -115.438751 2.000395 188 188 188
v -116.035538 -116.035355 0.000398 188 188 188
v -116.545090 -115.438751 0.000397 188 188 188
v -116.035538 -116.035355 2.000396 188 188 188
v -115.438934 -116.544891 0.000399 188 188 188
v -115.438934 -116.544891 2.000396 188 188 188
v -114.769958 -116.954834 2.000397 188 188 188
v -114.769958 -116.954834 0.000400 188 188 188
v -114.045090 -117.255081 0.000400 188 188 188
v -113.282173 -117.438248 0.000401 188 188 188
v -113.282173 -117.438248 2.000398 188 188 188
v -114.045090 -117.255081 2.000397 188 188 188
v -112.500008 -117.499802 0.000401 188 188 188
v -112.500008 -117.499802 2.000398 188 188 188
v -74.071075 -117.499802 2.000398 188 188 188
v -116.955032 -114.769775 0.000396 188 188 188
v -73.288895 -117.561371 2.000398 188 188 188
v -72.525986 -117.744522 2.000398 188 188 188
v -71.801117 -118.044769 2.000398 188 188 188
v -70.535538 -118.964279 2.000401 188 188 188
v -71.132141 -118.454727 2.000400 188 188 188
v -63.464474 -126.035324 2.000412 188 188 188
v -62.198891 -126.954819 0.000417 188 188 188
v -62.867863 -126.544876 2.000413 188 188 188
v -61.474022 -127.255066 0.000417 188 188 188
v -62.198891 -126.954819 2.000414 188 188 188
v -59.928940 -127.499786 0.000418 188 188 188
v -60.711113 -127.438232 0.000418 188 188 188
v -60.711113 -127.438232 2.000414 188 188 188
v -61.474022 -127.255066 2.000414 188 188 188
v -59.928940 -127.499786 2.000416 188 188 188
v 58.189739 -127.499786 2.000416 188 188 188
v 59.053814 -127.424561 2.000414 188 188 188
v 59.891872 -127.201157 2.000414 188 188 188
v 60.678722 -126.836258 2.000413 188 188 188
v 59.053814 -127.424561 0.000418 188 188 188
v -62.867863 -126.544876 0.000416 188 188 188
v 70.609329 -118.658691 2.000400 188 188 188
v 114.045090 117.255066 0.000000 188 188 188
v 116.545074 115.438713 0.000003 188 188 188
v 117.255280 114.044876 0.000005 188 188 188
v 117.255280 -114.044907 2.000392 188 188 188
v 116.955032 -114.769775 2.000393 188 188 188
v 113.282166 -117.438248 0.000401 188 188 188
v 114.769943 -116.954834 0.000400 188 188 188
v 116.955032 -114.769775 0.000396 188 188 188
v 116.545074 -115.438751 2.000395 188 188 188
v 116.035522 -116.035355 2.000396 188 188 188
v 115.438919 -116.544891 2.000396 188 188 188
v 116.035522 -116.035355 0.000398 188 188 188
v 114.769943 -116.954834 2.000397 188 188 188
v 114.045090 -117.255081 2.000397 188 188 188
v 113.282166 -117.438248 2.000398 188 188 188
v 114.045090 -117.255081 0.000400 188 188 188
v 112.500000 -117.499802 2.000398 188 188 188
v 115.438919 -116.544891 0.000399 188 188 188
v 116.545074 -115.438751 0.000397 188 188 188
v 117.255280 -114.044907 0.000395 188 188 188
v 72.108124 -117.798447 2.000398 188 188 188
v -63.464474 -126.035324 0.000415 188 188 188
v -72.525986 -117.744522 0.000401 188 188 188
v -73.288895 -117.561371 0.000401 188 188 188
v -114.045090 117.255066 0.000000 188 188 188
v -113.282173 117.438225 1.999997 188 188 188
v -113.282173 117.438225 0.000000 188 188 188
v 72.946182 -117.575027 0.000401 188 188 188
v 113.282166 117.438225 1.999997 188 188 188
v 112.500000 117.499786 0.000000 188 188 188
v 112.500000 117.499786 1.999997 188 188 188
v -112.500008 117.499786 0.000000 188 188 188
v -112.500008 117.499786 1.999997 188 188 188
v -112.500008 117.499786 0.000000 188 188 188
v -113.282173 117.438225 0.000000 188 188 188
v -112.500008 117.499786 0.000000 188 188 188
v -117.500000 112.499794 0.000008 188 188 188
v -112.500008 117.499786 0.000000 188 188 188
v -117.500000 -112.499817 0.000392 188 188 188
v -112.500008 117.499786 0.000000 188 188 188
v -74.071075 -117.499802 0.000401 188 188 188
v -112.500008 117.499786 0.000000 188 188 188
v -73.288895 -117.561371 0.000401 188 188 188
v -112.500008 117.499786 0.000000 188 188 188
v -72.525986 -117.744522 0.000401 188 188 188
v -112.500008 117.499786 0.000000 188 188 188
v -71.801117 -118.044769 0.000402 188 188 188
v -112.500008 117.499786 0.000000 188 188 188
v -71.132141 -118.454727 0.000402 188 188 188
v -112.500008 117.499786 0.000000 188 188 188
v -70.535538 -118.964279 0.000403 188 188 188
v -112.500008 117.499786 0.000000 188 188 188
v 71.321274 -118.163330 0.000402 188 188 188
v -112.500008 117.499786 0.000000 188 188 188
v 72.108124 -117.798447 0.000401 188 188 188
v -112.500008 117.499786 0.000000 188 188 188
v 72.108124 -117.798447 0.000401 188 188 188
v 72.946182 -117.575027 0.000401 188 188 188
v 72.946182 -117.575027 2.000398 188 188 188
v 72.946182 -117.575027 0.000401 188 188 188
v 73.810242 -117.499802 2.000398 188 188 188
v 72.946182 -117.575027 0.000401 188 188 188
v 73.810242 -117.499802 2.000398 188 188 188
v 73.810242 -117.499802 0.000401 188 188 188
v 112.500000 -117.499802 0.000401 188 188 188
v 73.810242 -117.499802 0.000401 188 188 188
v 112.500000 -117.499802 0.000401 188 188 188
v 117.500000 -112.499817 0.000392 188 188 188
v 117.438446 -113.281998 0.000393 188 188 188
v 117.500000 -112.499817 0.000392 188 188 188
v 117.438446 -113.281998 2.000391 188 188 188
v 117.500000 -112.499817 0.000392 188 188 188
v 117.500000 -112.499817 2.000390 188 188 188
v 117.500000 -112.499817 0.000392 188 188 188
v 117.500000 -112.499817 2.000390 188 188 188
v 117.500000 112.499794 0.000008 188 188 188
v 117.500000 112.499794 2.000005 188 188 188
v 117.500000 112.499794 0.000008 188 188 188
v 117.500000 112.499794 2.000005 188 188 188
v 117.438446 113.281960 0.000007 188 188 188
v 117.438446 113.281960 2.000005 188 188 188
v 117.438446 113.281960 0.000007 188 188 188
v 117.438446 113.281960 2.000005 188 188 188
v 117.255280 114.044876 0.000005 188 188 188
v 117.255280 114.044876 2.000002 188 188 188
v 117.255280 114.044876 0.000005 188 188 188
v 117.255280 114.044876 2.000002 188 188 188
v 116.955032 114.769745 0.000005 188 188 188
v 116.955032 114.769745 2.000001 188 188 188
v 116.955032 114.769745 0.000005 188 188 188
v 116.955032 114.769745 2.000001 188 188 188
v 116.545074 115.438713 0.000003 188 188 188
v 116.545074 115.438713 2.000000 188 188 188
v 116.545074 115.438713 0.000003 188 188 188
v 116.545074 115.438713 2.000000 188 188 188
v 116.035522 116.035316 0.000002 188 188 188
v 116.035522 116.035316 2.000000 188 188 188
v 116.035522 116.035316 0.000002 188 188 188
v 116.035522 116.035316 2.000000 188 188 188
v 115.438919 116.544868 0.000001 188 188 188
v 115.438919 116.544868 1.999998 188 188 188
v 115.438919 116.544868 0.000001 188 188 188
v 115.438919 116.544868 1.999998 188 188 188
v 114.769943 116.954811 0.000001 188 188 188
v 114.769943 116.954819 1.999997 188 188 188
v 114.769943 116.954811 0.000001 188 188 188
v 114.769943 116.954819 1.999997 188 188 188
v 114.045090 117.255066 0.000000 188 188 188
v 114.045090 117.255066 1.999997 188 188 188
v 114.045090 117.255066 0.000000 188 188 188
v 114.045090 117.255066 1.999997 188 188 188
v 113.282166 117.438225 0.000000 188 188 188
v 113.282166 117.438225 1.999997 188 188 188
v 113.282166 117.438225 0.000000 188 188 188
v 112.500000 117.499786 0.000000 188 188 188
v 71.321274 -118.163330 0.000402 188 188 188
v 71.321274 -118.163330 2.000400 188 188 188
v 71.321274 -118.163330 0.000402 188 188 188
v 70.609329 -118.658691 0.000403 188 188 188
v 71.321274 -118.163330 0.000402 188 188 188
v -63.464474 -126.035324 0.000415 188 188 188
v 70.609329 -118.658691 0.000403 188 188 188
v -59.928940 -127.499786 0.000418 188 188 188
v 70.609329 -118.658691 0.000403 188 188 188
v 58.189739 -127.499786 0.000418 188 188 188
v 70.609329 -118.658691 0.000403 188 188 188
v 59.053814 -127.424561 0.000418 188 188 188
v 70.609329 -118.658691 0.000403 188 188 188
v 59.891872 -127.201157 0.000417 188 188 188
v 70.609329 -118.658691 0.000403 188 188 188
v 60.678722 -126.836258 0.000417 188 188 188
v 70.609329 -118.658691 0.000403 188 188 188
v 61.390667 -126.340897 0.000416 188 188 188
v 70.609329 -118.658691 0.000403 188 188 188
v 61.390667 -126.340897 2.000413 188 188 188
v 70.609329 -118.658691 0.000403 188 188 188
v -114.045090 117.255066 1.999997 188 188 188
v -114.045090 117.255066 0.000000 188 188 188
v -117.500000 112.499794 0.000008 188 188 188
v -114.769958 116.954811 0.000001 188 188 188
v -114.045090 117.255066 0.000000 188 188 188
v -117.500000 112.499794 0.000008 188 188 188
v -114.769958 116.954811 0.000001 188 188 188
v -115.438934 116.544868 0.000001 188 188 188
v -114.769958 116.954811 0.000001 188 188 188
v -114.769958 116.954819 1.999997 188 188 188
v -115.438934 116.544868 0.000001 188 188 188
v -115.438934 116.544868 1.999998 188 188 188
v -115.438934 116.544868 0.000001 188 188 188
v -115.438934 116.544868 1.999998 188 188 188
v -116.035538 116.035316 0.000002 188 188 188
v -116.035538 116.035316 2.000000 188 188 188
v -116.035538 116.035316 0.000002 188 188 188
v -117.500000 112.499794 0.000008 188 188 188
v -116.545090 115.438713 0.000003 188 188 188
v -116.035538 116.035316 0.000002 188 188 188
v -117.500000 112.499794 0.000008 188 188 188
v -116.545090 115.438713 0.000003 188 188 188
v -116.955032 114.769745 0.000005 188 188 188
v -116.545090 115.438713 0.000003 188 188 188
v -116.545090 115.438713 2.000000 188 188 188
v -116.955032 114.769745 0.000005 188 188 188
v -116.955032 114.769745 2.000001 188 188 188
v -116.955032 114.769745 0.000005 188 188 188
v -116.955032 114.769745 2.000001 188 188 188
v -117.255287 114.044876 0.000005 188 188 188
v -117.255287 114.044876 2.000002 188 188 188
v -117.255287 114.044876 0.000005 188 188 188
v -117.500000 112.499794 0.000008 188 188 188
v -117.438446 113.281960 0.000007 188 188 188
v -117.255287 114.044876 0.000005 188 188 188
v -117.500000 112.499794 0.000008 188 188 188
v -117.438446 113.281960 0.000007 188 188 188
v -117.438446 113.281960 2.000005 188 188 188
v -117.500000 112.499794 0.000008 188 188 188
v -117.438446 113.281960 2.000005 188 188 188
v -117.255287 114.044876 2.000002 188 188 188
v -117.438446 113.281960 0.000007 188 188 188
v -117.500000 112.499794 0.000008 188 188 188
v -117.255287 114.044876 0.000005 188 188 188
v -116.955032 114.769745 0.000005 188 188 188
v -116.545090 115.438713 2.000000 188 188 188
v -116.035538 116.035316 2.000000 188 188 188
v -116.545090 115.438713 0.000003 188 188 188
v -117.500000 112.499794 0.000008 188 188 188
v -116.035538 116.035316 0.000002 188 188 188
v -115.438934 116.544868 0.000001 188 188 188
v -114.769958 116.954819 1.999997 188 188 188
v -114.045090 117.255066 1.999997 188 188 188
v -114.769958 116.954811 0.000001 188 188 188
v -114.045090 117.255066 0.000000 188 188 188
v -113.282173 117.438225 1.999997 188 188 188
v -113.282173 117.438225 0.000000 188 188 188
v -117.500000 112.499794 2.000005 188 188 188
v -117.500000 -112.499817 0.000392 188 188 188
v -117.500000 -112.499817 2.000390 188 188 188
v -117.500000 -112.499817 0.000392 188 188 188
v -117.500000 -112.499817 2.000390 188 188 188
v -117.438446 -113.281998 0.000393 188 188 188
v -117.438446 -113.281998 2.000391 188 188 188
v -117.438446 -113.281998 0.000393 188 188 188
v -74.071075 -117.499802 0.000401 188 188 188
v -117.255287 -114.044907 0.000395 188 188 188
v -117.438446 -113.281998 0.000393 188 188 188
v -74.071075 -117.499802 0.000401 188 188 188
v -117.255287 -114.044907 0.000395 188 188 188
v -116.955032 -114.769775 0.000396 188 188 188
v -117.255287 -114.044907 0.000395 188 188 188
v -117.255287 -114.044907 2.000392 188 188 188
v -116.955032 -114.769775 0.000396 188 188 188
v -116.955032 -114.769775 2.000393 188 188 188
v -116.955032 -114.769775 0.000396 188 188 188
v -116.955032 -114.769775 2.000393 188 188 188
v -116.545090 -115.438751 0.000397 188 188 188
v -116.545090 -115.438751 2.000395 188 188 188
v -116.545090 -115.438751 0.000397 188 188 188
v -74.071075 -117.499802 0.000401 188 188 188
v -116.035538 -116.035355 0.000398 188 188 188
v -116.545090 -115.438751 0.000397 188 188 188
v -74.071075 -117.499802 0.000401 188 188 188
v -116.035538 -116.035355 0.000398 188 188 188
v -115.438934 -116.544891 0.000399 188 188 188
v -116.035538 -116.035355 0.000398 188 188 188
v -116.035538 -116.035355 2.000396 188 188 188
v -115.438934 -116.544891 0.000399 188 188 188
v -115.438934 -116.544891 2.000396 188 188 188
v -115.438934 -116.544891 0.000399 188 188 188
v -115.438934 -116.544891 2.000396 188 188 188
v -114.769958 -116.954834 0.000400 188 188 188
v -114.769958 -116.954834 2.000397 188 188 188
v -114.769958 -116.954834 0.000400 188 188 188
v -74.071075 -117.499802 0.000401 188 188 188
v -114.045090 -117.255081 0.000400 188 188 188
v -114.769958 -116.954834 0.000400 188 188 188
v -74.071075 -117.499802 0.000401 188 188 188
v -114.045090 -117.255081 0.000400 188 188 188
v -112.500008 -117.499802 0.000401 188 188 188
v -114.045090 -117.255081 0.000400 188 188 188
v -113.282173 -117.438248 0.000401 188 188 188
v -114.045090 -117.255081 0.000400 188 188 188
v -114.045090 -117.255081 2.000397 188 188 188
v -113.282173 -117.438248 0.000401 188 188 188
v -113.282173 -117.438248 2.000398 188 188 188
v -112.500008 -117.499802 0.000401 188 188 188
v -112.500008 -117.499802 0.000401 188 188 188
v -113.282173 -117.438248 2.000398 188 188 188
v -113.282173 -117.438248 0.000401 188 188 188
v -74.071075 -117.499802 0.000401 188 188 188
v -112.500008 -117.499802 2.000398 188 188 188
v -112.500008 -117.499802 0.000401 188 188 188
v -112.500008 -117.499802 2.000398 188 188 188
v -74.071075 -117.499802 0.000401 188 188 188
v -114.045090 -117.255081 2.000397 188 188 188
v -114.769958 -116.954834 2.000397 188 188 188
v -114.045090 -117.255081 0.000400 188 188 188
v -74.071075 -117.499802 0.000401 188 188 188
v -114.769958 -116.954834 0.000400 188 188 188
v -115.438934 -116.544891 0.000399 188 188 188
v -116.035538 -116.035355 2.000396 188 188 188
v -116.545090 -115.438751 2.000395 188 188 188
v -116.035538 -116.035355 0.000398 188 188 188
v -74.071075 -117.499802 0.000401 188 188 188
v -116.545090 -115.438751 0.000397 188 188 188
v -116.955032 -114.769775 0.000396 188 188 188
v -117.255287 -114.044907 2.000392 188 188 188
v -117.438446 -113.281998 2.000391 188 188 188
v -117.255287 -114.044907 0.000395 188 188 188
v -74.071075 -117.499802 2.000398 188 188 188
v -74.071075 -117.499802 0.000401 188 188 188
v -73.288895 -117.561371 2.000398 188 188 188
v -73.288895 -117.561371 0.000401 188 188 188
v -72.525986 -117.744522 2.000398 188 188 188
v -72.525986 -117.744522 0.000401 188 188 188
v -71.801117 -118.044769 2.000398 188 188 188
v -71.801117 -118.044769 0.000402 188 188 188
v -71.132141 -118.454727 2.000400 188 188 188
v -71.132141 -118.454727 0.000402 188 188 188
v -70.535538 -118.964279 2.000401 188 188 188
v -63.464474 -126.035324 0.000415 188 188 188
v -63.464474 -126.035324 2.000412 188 188 188
v -63.464474 -126.035324 0.000415 188 188 188
v -63.464474 -126.035324 0.000415 188 188 188
v -70.535538 -118.964279 2.000401 188 188 188
v -70.535538 -118.964279 0.000403 188 188 188
v -63.464474 -126.035324 2.000412 188 188 188
v -62.867863 -126.544876 0.000416 188 188 188
v -62.867863 -126.544876 2.000413 188 188 188
v -62.867863 -126.544876 0.000416 188 188 188
v -59.928940 -127.499786 0.000418 188 188 188
v -62.198891 -126.954819 0.000417 188 188 188
v -62.867863 -126.544876 0.000416 188 188 188
v -59.928940 -127.499786 0.000418 188 188 188
v -62.198891 -126.954819 0.000417 188 188 188
v -61.474022 -127.255066 0.000417 188 188 188
v -62.198891 -126.954819 0.000417 188 188 188
v -59.928940 -127.499786 0.000418 188 188 188
v -61.474022 -127.255066 0.000417 188 188 188
v -60.711113 -127.438232 0.000418 188 188 188
v -61.474022 -127.255066 0.000417 188 188 188
v -59.928940 -127.499786 0.000418 188 188 188
v -60.711113 -127.438232 0.000418 188 188 188
v -62.198891 -126.954819 2.000414 188 188 188
v -62.867863 -126.544876 2.000413 188 188 188
v -62.198891 -126.954819 0.000417 188 188 188
v -61.474022 -127.255066 2.000414 188 188 188
v -62.198891 -126.954819 2.000414 188 188 188
v -61.474022 -127.255066 0.000417 188 188 188
v -60.711113 -127.438232 2.000414 188 188 188
v -61.474022 -127.255066 2.000414 188 188 188
v -60.711113 -127.438232 0.000418 188 188 188
v -60.711113 -127.438232 2.000414 188 188 188
v -59.928940 -127.499786 0.000418 188 188 188
v -59.928940 -127.499786 2.000416 188 188 188
v 58.189739 -127.499786 0.000418 188 188 188
v 58.189739 -127.499786 2.000416 188 188 188
v 59.053814 -127.424561 0.000418 188 188 188
v 59.053814 -127.424561 2.000414 188 188 188
v 59.891872 -127.201157 0.000417 188 188 188
v 59.891872 -127.201157 2.000414 188 188 188
v 60.678722 -126.836258 0.000417 188 188 188
v 61.390667 -126.340897 2.000413 188 188 188
v 60.678722 -126.836258 2.000413 188 188 188
v 61.390667 -126.340897 0.000416 188 188 188
v 60.678722 -126.836258 2.000413 188 188 188
v 60.678722 -126.836258 0.000417 188 188 188
v 61.390667 -126.340897 0.000416 188 188 188
v 59.891872 -127.201157 2.000414 188 188 188
v 59.891872 -127.201157 0.000417 188 188 188
v 60.678722 -126.836258 0.000417 188 188 188
v 59.053814 -127.424561 2.000414 188 188 188
v 59.053814 -127.424561 0.000418 188 188 188
v 59.891872 -127.201157 0.000417 188 188 188
v 58.189739 -127.499786 2.000416 188 188 188
v 58.189739 -127.499786 0.000418 188 188 188
v 59.053814 -127.424561 0.000418 188 188 188
v 58.189739 -127.499786 0.000418 188 188 188
v -59.928940 -127.499786 2.000416 188 188 188
v -59.928940 -127.499786 0.000418 188 188 188
v -59.928940 -127.499786 0.000418 188 188 188
v -62.867863 -126.544876 0.000416 188 188 188
v -63.464474 -126.035324 0.000415 188 188 188
v 71.321274 -118.163330 2.000400 188 188 188
v 70.609329 -118.658691 2.000400 188 188 188
v 70.609329 -118.658691 0.000403 188 188 188
v 113.282166 117.438225 0.000000 188 188 188
v 114.045090 117.255066 0.000000 188 188 188
v 112.500000 117.499786 0.000000 188 188 188
v 114.045090 117.255066 0.000000 188 188 188
v 114.769943 116.954811 0.000001 188 188 188
v 112.500000 117.499786 0.000000 188 188 188
v 114.769943 116.954811 0.000001 188 188 188
v 115.438919 116.544868 0.000001 188 188 188
v 112.500000 117.499786 0.000000 188 188 188
v 115.438919 116.544868 0.000001 188 188 188
v 116.035522 116.035316 0.000002 188 188 188
v 112.500000 117.499786 0.000000 188 188 188
v 116.035522 116.035316 0.000002 188 188 188
v 116.545074 115.438713 0.000003 188 188 188
v 112.500000 117.499786 0.000000 188 188 188
v 116.545074 115.438713 0.000003 188 188 188
v 116.955032 114.769745 0.000005 188 188 188
v 112.500000 117.499786 0.000000 188 188 188
v 116.955032 114.769745 0.000005 188 188 188
v 117.255280 114.044876 0.000005 188 188 188
v 112.500000 117.499786 0.000000 188 188 188
v 117.255280 114.044876 0.000005 188 188 188
v 117.438446 113.281960 0.000007 188 188 188
v 112.500000 117.499786 0.000000 188 188 188
v 117.438446 113.281960 0.000007 188 188 188
v 117.500000 112.499794 0.000008 188 188 188
v 112.500000 117.499786 0.000000 188 188 188
v 117.500000 112.499794 0.000008 188 188 188
v 73.810242 -117.499802 0.000401 188 188 188
v 112.500000 117.499786 0.000000 188 188 188
v 117.438446 -113.281998 2.000391 188 188 188
v 117.438446 -113.281998 0.000393 188 188 188
v 117.255280 -114.044907 2.000392 188 188 188
v 117.438446 -113.281998 0.000393 188 188 188
v 117.255280 -114.044907 2.000392 188 188 188
v 117.255280 -114.044907 0.000395 188 188 188
v 116.955032 -114.769775 2.000393 188 188 188
v 117.255280 -114.044907 0.000395 188 188 188
v 116.955032 -114.769775 0.000396 188 188 188
v 112.500000 -117.499802 0.000401 188 188 188
v 117.255280 -114.044907 0.000395 188 188 188
v 112.500000 -117.499802 0.000401 188 188 188
v 116.955032 -114.769775 0.000396 188 188 188
v 113.282166 -117.438248 0.000401 188 188 188
v 116.955032 -114.769775 0.000396 188 188 188
v 114.045090 -117.255081 0.000400 188 188 188
v 116.955032 -114.769775 0.000396 188 188 188
v 114.769943 -116.954834 0.000400 188 188 188
v 116.955032 -114.769775 0.000396 188 188 188
v 116.545074 -115.438751 0.000397 188 188 188
v 116.955032 -114.769775 0.000396 188 188 188
v 116.545074 -115.438751 2.000395 188 188 188
v 116.545074 -115.438751 0.000397 188 188 188
v 116.035522 -116.035355 2.000396 188 188 188
v 116.545074 -115.438751 0.000397 188 188 188
v 116.035522 -116.035355 2.000396 188 188 188
v 116.035522 -116.035355 0.000398 188 188 188
v 115.438919 -116.544891 2.000396 188 188 188
v 116.035522 -116.035355 0.000398 188 188 188
v 115.438919 -116.544891 0.000399 188 188 188
v 114.769943 -116.954834 0.000400 188 188 188
v 116.035522 -116.035355 0.000398 188 188 188
v 114.769943 -116.954834 0.000400 188 188 188
v 115.438919 -116.544891 0.000399 188 188 188
v 114.769943 -116.954834 2.000397 188 188 188
v 114.769943 -116.954834 0.000400 188 188 188
v 114.045090 -117.255081 2.000397 188 188 188
v 114.045090 -117.255081 0.000400 188 188 188
v 113.282166 -117.438248 2.000398 188 188 188
v 113.282166 -117.438248 0.000401 188 188 188
v 115.438919 -116.544891 2.000396 188 188 188
v 114.769943 -116.954834 2.000397 188 188 188
v 115.438919 -116.544891 0.000399 188 188 188
v 116.035522 -116.035355 0.000398 188 188 188
v 114.769943 -116.954834 0.000400 188 188 188
v 116.545074 -115.438751 0.000397 188 188 188
v 114.045090 -117.255081 2.000397 188 188 188
v 114.045090 -117.255081 0.000400 188 188 188
v 114.769943 -116.954834 0.000400 188 188 188
v 113.282166 -117.438248 2.000398 188 188 188
v 113.282166 -117.438248 0.000401 188 188 188
v 114.045090 -117.255081 0.000400 188 188 188
v 112.500000 -117.499802 2.000398 188 188 188
v 112.500000 -117.499802 0.000401 188 188 188
v 113.282166 -117.438248 0.000401 188 188 188
v 116.955032 -114.769775 2.000393 188 188 188
v 116.545074 -115.438751 2.000395 188 188 188
v 116.955032 -114.769775 0.000396 188 188 188
v 117.255280 -114.044907 0.000395 188 188 188
v 112.500000 -117.499802 0.000401 188 188 188
v 117.438446 -113.281998 0.000393 188 188 188
v 117.500000 -112.499817 0.000392 188 188 188
v 73.810242 -117.499802 0.000401 188 188 188
v 117.500000 112.499794 0.000008 188 188 188
v 112.500000 -117.499802 2.000398 188 188 188
v 73.810242 -117.499802 2.000398 188 188 188
v 112.500000 -117.499802 0.000401 188 188 188
v 73.810242 -117.499802 0.000401 188 188 188
v 72.946182 -117.575027 0.000401 188 188 188
v 112.500000 117.499786 0.000000 188 188 188
v 72.946182 -117.575027 2.000398 188 188 188
v 72.108124 -117.798447 2.000398 188 188 188
v 72.108124 -117.798447 0.000401 188 188 188
v 72.108124 -117.798447 2.000398 188 188 188
v 71.321274 -118.163330 0.000402 188 188 188
v 72.108124 -117.798447 0.000401 188 188 188
v -63.464474 -126.035324 0.000415 188 188 188
v -70.535538 -118.964279 0.000403 188 188 188
v 71.321274 -118.163330 0.000402 188 188 188
v -70.535538 -118.964279 0.000403 188 188 188
v -70.535538 -118.964279 2.000401 188 188 188
v -71.132141 -118.454727 0.000402 188 188 188
v -71.132141 -118.454727 0.000402 188 188 188
v -71.132141 -118.454727 2.000400 188 188 188
v -71.801117 -118.044769 0.000402 188 188 188
v -71.801117 -118.044769 0.000402 188 188 188
v -71.801117 -118.044769 2.000398 188 188 188
v -72.525986 -117.744522 0.000401 188 188 188
v -72.525986 -117.744522 0.000401 188 188 188
v -72.525986 -117.744522 2.000398 188 188 188
v -73.288895 -117.561371 0.000401 188 188 188
v -73.288895 -117.561371 0.000401 188 188 188
v -73.288895 -117.561371 2.000398 188 188 188
v -74.071075 -117.499802 0.000401 188 188 188
v -74.071075 -117.499802 0.000401 188 188 188
v -117.438446 -113.281998 0.000393 188 188 188
v -117.500000 -112.499817 0.000392 188 188 188
v -117.500000 -112.499817 0.000392 188 188 188
v -117.500000 112.499794 2.000005 188 188 188
v -117.500000 112.499794 0.000008 188 188 188
v -117.500000 112.499794 0.000008 188 188 188
v -114.045090 117.255066 0.000000 188 188 188
v -113.282173 117.438225 0.000000 188 188 188
v -113.282173 117.438225 1.999997 188 188 188
v -112.500008 117.499786 1.999997 188 188 188
v -113.282173 117.438225 0.000000 188 188 188
v 112.500000 117.499786 0.000000 188 188 188
v 72.946182 -117.575027 0.000401 188 188 188
v -112.500008 117.499786 0.000000 188 188 188
v 112.500000 117.499786 1.999997 188 188 188
v 113.282166 117.438225 1.999997 188 188 188
v 112.500000 117.499786 0.000000 188 188 188
f 1 132 4
f 2 133 134
f 129 135 136
f 3 137 138
f 58 139 140
f 62 141 142
f 126 143 144
f 125 145 146
f 5 147 148
f 6 149 150
f 7 151 152
f 8 153 154
f 9 155 156
f 130 157 158
f 10 159 160
f 11 161 162
f 163 164 12
f 15 165 166
f 167 168 13
f 14 169 170
f 16 171 172
f 17 173 174
f 175 176 18
f 19 177 178
f 179 180 20
f 21 181 182
f 183 184 105
f 22 185 186
f 187 188 23
f 24 189 190
f 191 192 104
f 25 193 194
f 195 196 27
f 26 197 198
f 199 200 28
f 29 201 202
f 203 204 30
f 32 205 206
f 207 208 103
f 31 209 210
f 211 212 33
f 131 213 214
f 215 216 217
f 123 34 218
f 219 36 220
f 221 124 222
f 91 223 224
f 35 225 226
f 100 227 228
f 38 229 230
f 37 231 232
f 39 233 234
f 40 235 236
f 102 237 238
f 55 128 127
f 56 239 240
f 241 242 243
f 244 42 245
f 246 41 247
f 43 248 249
f 44 250 251
f 54 252 253
f 45 254 255
f 256 257 258
f 259 53 260
f 261 46 262
f 47 263 264
f 50 265 266
f 48 267 268
f 49 269 270
f 271 272 273
f 274 51 275
f 52 276 277
f 278 279 280
f 281 282 283
f 284 285 286
f 287 288 289
f 290 291 292
f 293 294 295
f 57 296 297
f 59 298 299
f 60 300 301
f 61 302 303
f 304 305 306
f 307 80 308
f 309 64 310
f 63 311 312
f 67 313 314
f 65 315 316
f 66 317 318
f 319 320 321
f 322 69 323
f 324 68 325
f 70 326 327
f 72 328 329
f 71 330 331
f 73 332 333
f 334 335 336
f 337 77 338
f 339 74 340
f 341 76 342
f 75 343 344
f 78 345 346
f 347 348 349
f 350 351 352
f 79 353 354
f 355 356 357
f 358 359 360
f 361 362 363
f 364 365 366
f 367 368 369
f 81 370 371
f 82 372 373
f 83 374 375
f 85 376 377
f 84 378 379
f 86 380 381
f 101 382 383
f 384 385 386
f 88 387 388
f 87 389 390
f 391 392 393
f 394 89 395
f 396 90 397
f 398 92 399
f 400 94 401
f 402 93 403
f 404 405 406
f 407 408 409
f 410 411 412
f 95 413 414
f 96 415 416
f 97 417 418
f 98 419 420
f 99 421 422
f 423 424 425
f 426 427 428
f 429 430 431
f 432 433 434
f 435 436 437
f 438 439 440
f 441 442 443
f 444 445 446
f 447 448 449
f 450 451 452
f 453 454 455
f 456 457 458
f 459 460 461
f 462 463 464
f 465 466 467
f 468 469 470
f 471 472 473
f 474 475 476
f 477 106 478
f 479 122 480
f 481 107 482
f 483 110 484
f 485 486 487
f 108 488 489
f 118 490 491
f 109 492 493
f 121 494 495
f 111 496 497
f 498 112 499
f 500 114 501
f 502 113 503
f 504 120 505
f 506 507 508
f 115 509 510
f 511 116 512
f 513 117 514
f 515 119 516
f 517 518 519
f 520 521 522
f 523 524 525
f 526 527 528
f 529 530 531
f 532 533 534
f 535 536 537
f 538 539 540
f 541 542 543
f 544 545 546
f 547 548 549
f 550 551 552
f 553 554 555
f 556 557 558
f 559 560 561
f 562 563 564
f 565 566 567
f 568 569 570
f 571 572 573
f 574 575 576
f 577 578 579
f 580 581 582
f 583 584 585
f 586 587 588
vt 0.203940 0.049153
vt 0.742257 0.013039
vt 0.031741 0.991253
vt 0.745853 0.013339
vt 0.749342 0.014231
vt 0.752617 0.015688
vt 0.755581 0.017666
vt 0.793954 0.048339
vt 0.796918 0.050316
vt 0.968329 0.991253
vt 0.800193 0.051773
vt 0.971585 0.991007
vt 0.974761 0.990276
vt 0.977778 0.989077
vt 0.980563 0.987440
vt 0.983046 0.985405
vt 0.985167 0.983023
vt 0.986874 0.980352
vt 0.988124 0.977458
vt 0.988886 0.974412
vt 0.989142 0.971289
vt 0.803682 0.052665
vt 0.989142 0.072929
vt 0.988886 0.069806
vt 0.807279 0.052966
vt 0.988124 0.066760
vt 0.986874 0.063866
vt 0.985167 0.061195
vt 0.983046 0.058813
vt 0.980563 0.056778
vt 0.977778 0.055142
vt 0.974761 0.053943
vt 0.968329 0.052966
vt 0.971585 0.053211
vt 0.250574 0.013039
vt 0.206423 0.047118
vt 0.247318 0.013284
vt 0.244143 0.014016
vt 0.241125 0.015214
vt 0.238341 0.016851
vt 0.235857 0.018886
vt 0.201155 0.050790
vt 0.198138 0.051989
vt 0.194962 0.052720
vt 0.191706 0.052966
vt 0.010928 0.971289
vt 0.010928 0.072929
vt 0.031741 0.052966
vt 0.011184 0.069806
vt 0.011947 0.066760
vt 0.013197 0.063866
vt 0.014903 0.061195
vt 0.017024 0.058813
vt 0.019508 0.056778
vt 0.022292 0.055142
vt 0.025310 0.053943
vt 0.028485 0.053211
vt 0.028485 0.991007
vt 0.025310 0.990276
vt 0.022292 0.989077
vt 0.019508 0.987440
vt 0.017024 0.985405
vt 0.014903 0.983023
vt 0.013197 0.980352
vt 0.011947 0.977458
vt 0.011184 0.974412
usemtl Mat_0
f 123/11 31/13 131/12
f 123/11 131/12 1/10
f 34/9 123/11 1/10
f 40/7 102/8 2/3
f 99/6 40/7 2/3
f 98/5 99/6 2/3
f 97/4 98/5 2/3
f 96/2 97/4 2/3
f 85/1 96/2 2/3
f 83/42 85/1 2/3
f 82/43 83/42 2/3
f 81/44 82/43 2/3
f 79/45 81/44 2/3
f 52/46 79/45 2/3
f 128/58 52/46 2/3
f 55/59 52/46 128/58
f 51/66 52/46 48/65
f 48/65 52/46 47/64
f 47/64 52/46 46/63
f 46/63 52/46 54/62
f 54/62 52/46 43/61
f 43/61 52/46 41/60
f 41/60 52/46 55/59
f 57/47 79/45 52/46
f 75/57 78/48 76/56
f 76/56 78/48 71/55
f 71/55 78/48 70/54
f 70/54 78/48 68/53
f 68/53 78/48 65/52
f 65/52 78/48 63/51
f 63/51 78/48 64/50
f 64/50 78/48 60/49
f 60/49 78/48 57/47
f 78/48 79/45 57/47
f 95/35 96/2 85/1
f 84/36 95/35 85/1
f 93/37 95/35 84/36
f 94/38 93/37 84/36
f 90/39 94/38 84/36
f 88/40 90/39 84/36
f 86/41 88/40 84/36
f 102/8 34/9 2/3
f 123/11 32/14 31/13
f 123/11 29/15 32/14
f 123/11 26/16 29/15
f 123/11 25/17 26/16
f 123/11 24/18 25/17
f 123/11 22/19 24/18
f 123/11 21/20 22/19
f 123/11 19/21 21/20
f 123/11 10/22 19/21
f 10/22 17/23 19/21
f 10/22 16/24 17/23
f 11/25 116/32 115/31
f 11/25 115/31 113/30
f 11/25 119/33 116/32
f 119/33 117/34 116/32
f 11/25 113/30 112/29
f 11/25 112/29 111/28
f 11/25 111/28 107/27
f 11/25 107/27 106/26
f 11/25 106/26 16/24
f 10/22 11/25 16/24
f 34/9 1/10 2/3

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -65,31 +65,22 @@ UM.TooltipArea
{
id: defaultOptionsModel
function updateModel()
{
clear()
function updateModel() {
clear();
if(!propertyProvider.properties.options)
{
return
if (!propertyProvider.properties.options) {
return;
}
if (typeof propertyProvider.properties["options"] === "string")
{
return
if (typeof(propertyProvider.properties["options"]) === "string") {
return;
}
for (var i = 0; i < propertyProvider.properties["options"].keys().length; i++)
{
var key = propertyProvider.properties["options"].keys()[i]
var value = propertyProvider.properties["options"][key]
append({ text: value, code: key })
if (propertyProvider.properties.value === key)
{
comboBox.currentIndex = i
}
const keys = propertyProvider.properties["options"].keys();
for (let index = 0; index < propertyProvider.properties["options"].keys().length; index ++) {
const key = propertyProvider.properties["options"].keys()[index];
const value = propertyProvider.properties["options"][key];
defaultOptionsModel.append({ text: value, value: key });
}
}
@ -114,36 +105,27 @@ UM.TooltipArea
model: defaultOptionsModel
textRole: "text"
currentIndex:
{
var currentValue = propertyProvider.properties.value
var index = 0
for (var i = 0; i < model.count; i++)
{
if (model.get(i).value == currentValue)
{
index = i
break
currentIndex: {
const currentValue = propertyProvider.properties.value
for (let i = 0; i < model.count; i ++) {
if (model.get(i).value === currentValue) {
return i;
}
}
return index
return -1;
}
onActivated:
{
var newValue = model.get(index).value
if (propertyProvider.properties.value !== newValue && newValue !== undefined)
{
if (setValueFunction !== null)
{
setValueFunction(newValue)
onActivated: function (index) {
const newValue = model.get(index).value;
if (propertyProvider.properties.value !== newValue && newValue !== undefined) {
if (setValueFunction !== null) {
setValueFunction(newValue);
} else {
propertyProvider.setPropertyValue("value", newValue);
}
else
{
propertyProvider.setPropertyValue("value", newValue)
}
forceUpdateOnChangeFunction()
afterOnEditingFinishedFunction()
forceUpdateOnChangeFunction();
afterOnEditingFinishedFunction();
}
}
}

View File

@ -32,7 +32,7 @@ Item
UM.Label
{
id: bedTargetTemperature
text: printerModel != null ? printerModel.targetBedTemperature + "°C" : ""
text: printerModel != null ? Math.round(printerModel.targetBedTemperature) + "°C" : ""
font: UM.Theme.getFont("default_bold")
color: UM.Theme.getColor("text_inactive")
anchors.right: parent.right
@ -66,7 +66,7 @@ Item
UM.Label
{
id: bedCurrentTemperature
text: printerModel != null ? printerModel.bedTemperature + "°C" : ""
text: printerModel != null ? Math.round(printerModel.bedTemperature) + "°C" : ""
font: UM.Theme.getFont("large_bold")
anchors.right: bedTargetTemperature.left
anchors.top: parent.top
@ -293,4 +293,4 @@ Item
}
}
}
}
}

View File

@ -0,0 +1,18 @@
[general]
definition = mixware_hyper_k
name = Draft
version = 4
[metadata]
global_quality = True
quality_type = draft
setting_version = 21
type = quality
[values]
layer_height = 0.15
layer_height_0 = 0.15
support_interface_height = =layer_height*8
top_bottom_thickness = =layer_height_0 + layer_height * 6
wall_thickness = =line_width*3

View File

@ -0,0 +1,18 @@
[general]
definition = mixware_hyper_k
name = Coarse
version = 4
[metadata]
global_quality = True
quality_type = coarse
setting_version = 21
type = quality
[values]
layer_height = 0.2
layer_height_0 = 0.2
support_interface_height = =layer_height*4
top_bottom_thickness = =layer_height_0+layer_height*3
wall_thickness = =line_width*2

View File

@ -0,0 +1,18 @@
[general]
definition = mixware_hyper_k
name = Fine
version = 4
[metadata]
global_quality = True
quality_type = normal
setting_version = 21
type = quality
[values]
layer_height = 0.1
layer_height_0 = 0.12
support_interface_height = =layer_height*12
top_bottom_thickness = =layer_height_0+layer_height*10
wall_thickness = =line_width*3

View File

@ -15,6 +15,7 @@ infill_before_walls = false
infill_overlap = 30.0
infill_wipe_dist = 0.0
layer_height = 0.15
layer_height_0 = 0.15
retraction_combing = all
retraction_extrusion_window = 10
retraction_min_travel = 1.5

View File

@ -15,6 +15,7 @@ infill_before_walls = false
infill_overlap = 30.0
infill_wipe_dist = 0.0
layer_height = 0.2
layer_height_0 = 0.2
retraction_combing = all
retraction_extrusion_window = 10
retraction_min_travel = 1.5

View File

@ -15,6 +15,7 @@ infill_before_walls = false
infill_overlap = 30.0
infill_wipe_dist = 0.0
layer_height = 0.1
layer_height_0 = 0.12
retraction_combing = all
retraction_extrusion_window = 10
retraction_min_travel = 1.5

View File

@ -0,0 +1,15 @@
[general]
definition = mixware_vulcan
name = Draft
version = 4
[metadata]
global_quality = True
quality_type = draft
setting_version = 21
type = quality
[values]
layer_height = 0.15
layer_height_0 = 0.18

View File

@ -0,0 +1,15 @@
[general]
definition = mixware_vulcan
name = Coarse
version = 4
[metadata]
global_quality = True
quality_type = coarse
setting_version = 21
type = quality
[values]
layer_height = 0.2
layer_height_0 = 0.2

View File

@ -0,0 +1,15 @@
[general]
definition = mixware_vulcan
name = Fine
version = 4
[metadata]
global_quality = True
quality_type = normal
setting_version = 21
type = quality
[values]
layer_height = 0.1
layer_height_0 = 0.12

View File

@ -0,0 +1,18 @@
[general]
definition = mixware_wand
name = Draft
version = 4
[metadata]
global_quality = True
quality_type = draft
setting_version = 21
type = quality
[values]
acceleration_travel = 500
infill_before_walls = False
layer_height = 0.15
layer_height_0 = 0.18
support_infill_rate = 20

View File

@ -0,0 +1,18 @@
[general]
definition = mixware_wand
name = Coarse
version = 4
[metadata]
global_quality = True
quality_type = coarse
setting_version = 21
type = quality
[values]
acceleration_travel = 500
infill_before_walls = False
layer_height = 0.2
layer_height_0 = 0.2
support_infill_rate = 20

View File

@ -0,0 +1,18 @@
[general]
definition = mixware_wand
name = Fine
version = 4
[metadata]
global_quality = True
quality_type = normal
setting_version = 21
type = quality
[values]
acceleration_travel = 500
infill_before_walls = False
layer_height = 0.1
layer_height_0 = 0.11
support_infill_rate = 20

View File

@ -38,6 +38,7 @@ fill_outline_gaps
xy_offset
xy_offset_layer_0
hole_xy_offset
hole_xy_offset_max_diameter
z_seam_type
z_seam_position
z_seam_x
@ -58,6 +59,7 @@ top_bottom_pattern_0
skin_monotonic
connect_skin_polygons
skin_angles
small_skin_width
skin_no_small_gaps_heuristic
skin_outline_count
ironing_enabled
@ -302,11 +304,13 @@ adhesion_extruder_nr
raft_surface_extruder_nr
skirt_line_count
skirt_gap
skirt_height
skirt_brim_minimal_length
brim_width
brim_gap
brim_line_count
brim_outside_only
brim_smart_ordering
raft_margin
raft_smoothing
raft_airgap