I'm drawing and 3D printing Christmas ornaments. They were modeled in Autodesk AutoCAD and Fusion 360. I used the 0.2mm and 0.4mm hotend assemblies on my Bambu Lab X1 Carbon for printing.
Tuesday, December 12, 2023
Christmas Ornaments
Tuesday, July 18, 2023
2024 Ironman World Championship
Thursday, June 29, 2023
Autodesk University 2023 3D Printed Chip
I created an Autodesk University chip I plan to hand out during the week of AU. I used AutoCAD solids to create the model. As for the QR code, I converted the QR code image to DXF and cleaned it up in AutoCAD. I tested the QR code with my smartphone while in AutoCAD and then in the Bambu Lab Studio slicer software. It worked so now to 3D print the model and test the QR code. I used Numakers PLA filament in three colors. The QR code works but I feel it can be improved. More to come!
Wednesday, June 14, 2023
3D Printed Miniature Traffic Control Box
Friday, May 26, 2023
Autodesk University - AutoCAD & General Design
Thursday, May 25, 2023
Bambu Lab 3D Printer
Thursday, April 27, 2023
XREFs on Layer
Over the years supporting AutoCAD/Civil 3D, I
have been asked, where are my XREFs? Co-workers have placed the
references on the current layers and turned off that layer. I wrote a simple
lisp routine that will place the reference on a specified called
"G-ANNO-REFR" which can be changed to your company standards.
The
lisp routine uses the "XA" command (which can be changed to your
likings). XA is a default command for XATTACH. Once the lisp routine is set in
the CUI startup, it will override the default "XA" command. Run the
XA command to attach a drawing. Once the drawing is attached, the previous
layer will be restored.
Cleanup the "Temp" folder!
Over time, the c:\Users\%USERNAME%\AppData\Local\Temp\ folder will collect Gigs and Gigs of files from software. It's best to clean it from time to time but make sure there is not anything useful in this folder before deleting. Once it's gone, it's gone. I am not responsible for anything that is deleted. You can navigate to the folder to manually delete the files and folders or create a batch file to delete the files and folder with just double click. I execute the file about once a month to clean the Temp folder.
Here are the steps to create the batch file.
- Open Notepad.
- Copy and paste the script below into the blank Notepad file.
- Click File then SaveAs.
- Click the "Save as type" pull down to select All Files. This will allow the Notepad file to have another file extension type.
- Name the file to your preference with a .bat extension. I named the file "Delete User Temp Files.bat".
- Execute the batch file. You'll see Command Prompt screen appear as it's deleting the files and folders. It will not delete files and folders that are currently being utilized by the OS or open software.
rem This batch file deletes files
rem and folders in the User Temp folder
cd\
c:
cd c:\Users\%USERNAME%\AppData\Local\Temp\
del /s /q c:\Users\%USERNAME%\AppData\Local\Temp\
rmdir /s /q c:\Users\%USERNAME%\AppData\Local\Temp\
cd\
Tuesday, April 18, 2023
Renaming/Renumbering Civil 3D Alignment Curve Segments
When updating an alignment with new curves or replacing curves, the curve segment name/numbers will be out of order. The curve name/numbers will display also display out of order in the Superelevation Tabular Editor. To rename/renumber the curves, follow the steps below.
- Select the corridor.
- Click the Superelevation pull down on the Ribbon.
- Click Calculate/Edit Superelevation.
- Click into the Curve Name field to rename the curve.
- Close the Manager.
- Open the Superelevation Tabular Editor to view the updated curves.