Skip to content

Commit 814b496

Browse files
Rename from Fusion 360 to Fusion
1 parent 71a598c commit 814b496

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

exporter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
## Officially Supported Exporters
44

55
### SynthesisFusionAddin
6-
An Autodesk® Fusion 360™ add-in to export assemblies into the [mirabuf](https://github.com/HiceS/mirabuf) format.
6+
An Autodesk® Fusion™ add-in to export assemblies into the [mirabuf](https://github.com/HiceS/mirabuf) format.
77

88
See [README](/exporter/SynthesisFusionAddin).

exporter/SynthesisFusionAddin/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Synthesis Exporter
2-
This is a Addin for *Autodesk Fusion 360* that will export a [Mirabuf](https://github.com/HiceS/mirabuf) usable by the Synthesis simulator.
2+
This is a Addin for *Autodesk Fusion* that will export a [Mirabuf](https://github.com/HiceS/mirabuf) usable by the Synthesis simulator.
33

44
## Features
55
- [x] Materials
@@ -31,7 +31,7 @@ We use `VSCode` Primarily, download it to interact with our code or use your own
3131

3232
### How to Build + Run
3333
1. See root [`README`](/README.md) on how to run `init` script
34-
2. Open `Autodesk Fusion 360`
34+
2. Open `Autodesk Fusion`
3535
3. Select `UTILITIES` from the top bar
3636
4. Click `ADD-INS` Button
3737
5. Click `Add-Ins` tab at the top of Scripts and Add-Ins dialog
@@ -55,7 +55,7 @@ Most of the runtime for the addin is saved under the `logs` directory in this fo
5555

5656
#### General Debugging
5757

58-
1. Open `Autodesk Fusion 360`
58+
1. Open `Autodesk Fusion`
5959
2. Select `UTILITIES` from the top bar
6060
3. Click `ADD-INS` Button
6161
4. Click `Add-Ins` tab at the top of Scripts and Add-Ins dialog

exporter/SynthesisFusionAddin/Synthesis.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313

1414

1515
def run(_):
16-
"""## Entry point to application from Fusion 360.
16+
"""## Entry point to application from Fusion.
1717
1818
Arguments:
19-
**context** *context* -- Fusion 360 context to derive app and UI.
19+
**context** *context* -- Fusion context to derive app and UI.
2020
"""
2121

2222
try:
@@ -38,10 +38,10 @@ def run(_):
3838

3939

4040
def stop(_):
41-
"""## Fusion 360 exit point - deconstructs buttons and handlers
41+
"""## Fusion exit point - deconstructs buttons and handlers
4242
4343
Arguments:
44-
**context** *context* -- Fusion 360 Data.
44+
**context** *context* -- Fusion Data.
4545
"""
4646
try:
4747
unregister_all()

exporter/SynthesisFusionAddin/src/Parser/SynthesisParser/Joints.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def fillRevoluteJointMotion(
273273
"""#### Fill Protobuf revolute joint motion data
274274
275275
Args:
276-
revoluteMotion (adsk.fusion.RevoluteJointMotion): Fusion 360 Revolute Joint Data
276+
revoluteMotion (adsk.fusion.RevoluteJointMotion): Fusion Revolute Joint Data
277277
protoJoint (joint_pb2.Joint): Protobuf joint that is being modified
278278
"""
279279

@@ -317,7 +317,7 @@ def fillSliderJointMotion(
317317
"""#### Fill Protobuf slider joint motion data
318318
319319
Args:
320-
sliderMotion (adsk.fusion.SliderJointMotion): Fusion 360 Slider Joint Data
320+
sliderMotion (adsk.fusion.SliderJointMotion): Fusion Slider Joint Data
321321
protoJoint (joint_pb2.Joint): Protobuf joint that is being modified
322322
323323
"""
@@ -390,7 +390,7 @@ def _jointOrigin(
390390
"""#### Joint Origin Internal Finder that was orignally created for Synthesis by Liam Wang
391391
392392
Args:
393-
joint (Union[adsk.fusion.Joint, adsk.fusion.AsBuiltJoint]): A Fusion 360 Joint that is either a Proper or As Build Joint
393+
joint (Union[adsk.fusion.Joint, adsk.fusion.AsBuiltJoint]): A Fusion Joint that is either a Proper or As Build Joint
394394
395395
Returns:
396396
Point3D by Autodesk Fusion

exporter/SynthesisFusionAddin/src/Parser/SynthesisParser/Materials.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def getPhysicalMaterialData(fusion_material, proto_material, options):
4646
"""Gets the material data and adds it to protobuf
4747
4848
Args:
49-
fusion_material (fusionmaterial): Fusion 360 Material
49+
fusion_material (fusionmaterial): Fusion Material
5050
proto_material (protomaterial): proto material mirabuf
5151
options (parseoptions): parse options
5252
"""
@@ -66,7 +66,7 @@ def getPhysicalMaterialData(fusion_material, proto_material, options):
6666
proto_material.static_friction = 0.5
6767
proto_material.restitution = 0.5
6868

69-
proto_material.description = f"{fusion_material.name} exported from FUSION 360"
69+
proto_material.description = f"{fusion_material.name} exported from FUSION"
7070

7171
"""
7272
Thermal Properties
@@ -182,10 +182,10 @@ def getMaterialAppearance(
182182
options: ParseOptions,
183183
appearance: material_pb2.Appearance,
184184
) -> None:
185-
"""Takes in a Fusion 360 Mesh and converts it to a usable unity mesh
185+
"""Takes in a Fusion Mesh and converts it to a usable unity mesh
186186
187187
Args:
188-
fusionAppearance (adsk.core.Appearance): Fusion 360 appearance material
188+
fusionAppearance (adsk.core.Appearance): Fusion appearance material
189189
"""
190190
construct_info("", appearance, fus_object=fusionAppearance)
191191

exporter/SynthesisFusionAddin/src/Parser/SynthesisParser/RigidGroup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def ExportRigidGroups(
2828
- Appears to have a bug, logged already
2929
3030
Args:
31-
fus_occ (adsk.fusion.Occurrence): Fusion 360 Occurrence Reference
31+
fus_occ (adsk.fusion.Occurrence): Fusion Occurrence Reference
3232
hel_occ (Assembly_pb2.Occurrence): Protobuf Hellion Occurrence Reference
3333
"""
3434
try:

exporter/SynthesisFusionAddin/src/UI/Configuration/SerialCommand.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
""" SerialCommand module
22
3-
Defines what is generated by the Fusion 360 Command.
3+
Defines what is generated by the Fusion Command.
44
Use to be protobuf but can only de-serialize from a filestream strangely.
55
This is used to store in the userdata.
66
"""

exporter/SynthesisFusionAddin/src/UI/HUI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def __init__(
115115
**location** *str* -- location for button to be attached.\n
116116
**exec_func** *FunctionType* -- Function pointer to button execution logic.\n
117117
**description** *str* -- Helper text for onhover (default: *'No Description'*).\n
118-
**command** *bool* -- Is this a internal Fusion 360 command created event or a pass through
118+
**command** *bool* -- Is this a internal Fusion command created event or a pass through
119119
120120
Raises:
121121
**ValueError**: if *location* does not exist in the current context
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
APP_NAME = "Synthesis"
22
APP_TITLE = "Synthesis Robot Exporter"
3-
DESCRIPTION = "Exports files from Fusion 360 into the Synthesis Format"
3+
DESCRIPTION = "Exports files from Fusion into the Synthesis Format"
44
INTERNAL_ID = "synthesis"

0 commit comments

Comments
 (0)