MagWeb's mmApi scripts

MagWeb
Advisor

MagWeb's mmApi scripts

MagWeb
Advisor
Advisor

Instead of spreading scripts all over the forum I'll post them in this thread from now on.

 

1 Script:

ToolManager 

 

On a user's request I repost a message I did at MM's old forum on March 23, 2018, 01:30:51 PM:

Download below

"

Here’s a long raw script meant to run api commands without coding a .py file. Well, you’ll need the api to run (important instructions at post’s bottom) or compile the script to a standalone application (recommended it’s easy and seems to be faster) but after that it’s something I find very useful. I post it as it is without any warranty at your own risk in the hope you find it useful and maybe some better coder polishes this…

Why to use it:
For some tools MM remembers the last used parameter setting. For some tools or special parameters it always loads hard coded default values entering a tool. Now what to do if you want the parameters at a step before „last“ or different to defaults? In MM you always have to set this manually - hopefully your own brain remembers all parameters…..

What this script does:
With this ToolManager you can save current tool parameters and reload them. Means you can save several settings for the same tool and others as well.
As there is no direct function to get the current tool’s name in mmApi and it needs to be known to call this very tool and its parameters again, I use a pretty ugly workaround:
There’s a long list of tools and their parameters (BTW: There are more parameters than listed in the documentation or StoredCommands.h, so see this list as a reference too). As the tools have unique (one exception only: Bridge and Handle use the same parameters!) combinations of parameters one can find the tool itself. So the code iterates through the list of params trying to get that kind of value from MM. If MM responds with an empty list the very parameter isn’t currently available so skip to the next…. This ends in a list of available values and a toollname fitting to this combination which is saved in ToolManager.

Usage:
+Standard Tool features:
- Hitting „Save Tool“ button will save current tool settings to the list at top if MM is in some tool. So do your settings in MM and hit „SaveTool“ before leaving the tool. You may do several saves while being in the same tool too.
- The new entry in the list will be called „setting“ + some number by default. RMB-double click (on MAC),  MMB-double click (on WIN) an item in the list opens a dialog where you can set a more meaningful description.
- Hitting „Delete“ will remove an selected item from the list.
- To restore a saved tool setting LMB-double click the item in the list. Note: It will cancel a tool currently open in MM. So if you want to keep the current result hit Accept in MM first.
- To change saved parameters in a saved setting, double click the item to run the tool with saved settings. Now change your settings  in MM and hit UpdateTool in ToolManager. New settings are saved to the item now.
+ AutoSet features:
- Clicking AutoSet will perform listed tool actions from top to bottom and automatically accept them. This way you can perform some kind of simple „scripting“ .
- There are tools in MM not owning some parameters (e.g. Duplicate). Therefor they can’t be detected by my approach as described above. You can add such tools at the list’s bottom by hitting AddCom. A dialog will pop up where you can choose such a command to add.
- You can copy a selected item hitting the Copy button it will be copied to the bottom of the list.
- You can move an item up/down LMB-dragging it in the list. This is needed to get the right order of commands running AutoSet
- By default all added items in the list are active while running AutoSet. If you want to exclude an item without deleting it use the +/-Auto button. This toggles between active and inactive which greys-out  selected item in the list.
I/O:
- You can save the current set of saved tools to a .csv file hitting SaveSet
- You can load such a set via LoadSet. This will replace the current list

Limitations:
- Using mmApi sends each parameter one by one. So expect some „motion“ in the scene while restoring tool settings of tools using a transformation widget.
- There’s no way I found to get/save the brush-type,-falloff,-color,-stencil in SCULPT so it will still use the last used one. Against that all other brush parameters can be saved (even symmetry plane settings)
- In case of SELECT/Edit/Handle and Bridge his approach can’t decide which was used. It will always think it’s Handle (maybe fixed by a decision dialog in the future)
- Don’t expect advanced mmApi stuff on this level of simply calling tools.
- Maybe bad, inefficient coding for now but working….

################
How to run this script:
- Download and setup mmApi using instructions at: https://github.com/meshmixer/mm-api
- Download, unzip attached file „ToolManager.py“ to mm-api-master/distrib/python (or python_osx on MAC)
- Edit def get_toolparam_mat3f(remote, param_name): in tool.py (mm directory) that way:

def get_toolparam_mat3f(remote, param_name):
    """Returns the current value of the given Tool parameter, or empty list if the parameter is not found."""
    cmd = mmapi.StoredCommands()
    key = cmd.AppendGetToolParameterCommand(param_name)
    remote.runCommand(cmd)
    m = mmapi.mat3f()
    bFound = cmd.GetToolParameterCommandResult(key, m)
    if bFound:
        return tuple(m.m) #MagWeb: added output as tuple
    else:
        return ()

tuple(m.m) is needed to return 9 element tuples instead of SWIG objects in case of rotation matrices
##################

enjoy

"

 

You can do stuff like this:

 

 

 

Screencast will be displayed here after you click Post.

bf8ff1a3-6198-4d7d-8e47-90d793fed1fb

 



Gunter Weber
Triangle Artisan

Reply
11,764 Views
71 Replies
Replies (71)

MagWeb
Advisor
Advisor

2 Script:

MM Scene Manager 

 

Here's another script I posted on the old forum on August 15, 2017, 07:51:01 PM. Think this is useful too.

Download below

 

"

I needed some advanced features to control a scene with multiple objects.
Using MM API I made a standalone application to replace MM's ObjectBrowser. This is my very first application so expect some issues and ugly source code but I did my best and found it running fine on several macOS machines here (even machines where MM API never was installed).
ATM it is Mac only, sorry, but pure Python 2.7 seems not to support builds for a different OS so I will have to install Python and MM API on Windows to build from the same code over there (or maybe somebody else does?).

Usage:

No installation procedure. Simply unpack it to somewhere on your HDD.

AFTER you've loaded at least one object to MM's scene launch MMSceneManager.app. Its GUI will show up. This window will be topmost all the time. As it is a separate application you may drag it to anywhere (even to a second monitor). Dragging the lower corners you may resize it to a desired shape.

MMSceneManager talks and listens to MM's scene. Therefore at launch it shows all objects (Meshes and Pivots) existing in MM's current scene. If you add a new object to MM's scene it will be added to the SceneManager highlighted in red. As soon as you click this highlighted item it will loose this "new" flag.

At launch SceneManager does not know about the visibility settings in MM. All items are marked with an "O" (= visible). To synchronise visibility you may click on the "ShowAll" Button which will set all meshes in MM to visible.
Hiding via SceneManager is simple: RMB-click on the item to hide in MM's scene. The item will now show a "X" (= non visible).

You can rename an item via LMB double click. Enter the new name in the pop up dialog.

Now the either sense of this app: It supports sorting in a hierarchical tree structure.
With LMB-drag you can move an item up and down onto existing and open levels. As MM does not know something about such levels at start you can move the item only up and down which is fine but not the kind of usage I wrote this app for.
With Shift+LMB-drag you can move item "A" (and if there already are "children" its children) onto another item "B" into a new depth of the scene-tree. Now "B" became the parent of "A". Again Shift+LMB dragging "B"  onto an item "C" will make C the parent of B which is parent of A....aso.... As you may bind several same level children to a parent  you can construct complex structures quickly.
As soon as you drop an item A onto another item B you will get a little triangle in front of the B entry. Clicking this triangle will open/close the next down level of children.
Back to LMB-dragging (without holding down Shift): With a parent B open you may drag the item to that level as well.

So if there's D being a child of C being a child of B being a child of A: LMB clicking of A will activate B, C and D in MM's scene as well. Clicking on B will also activate C and D - a quick way to activate and to set visibility (remember RMB click).

Now you may run into a situation where you want to activate a single object (which is a parent of children) only. For this I added the "Single" checkbox. This active will activate the clicked item only.

To organize objects without a direct parent there's the option to add "Boxes" to the tree ( "AddBox" button). A box is just a container object ( similar to a file's folder). It acts the same way (same commands) as an object item, but isn't sent to MM.

"Open All" button will expand all nodes in the tree to show the whole content.

Now when you did all that nice work to construct such a tree it might happen that you want to save this structure. MM can't do this. Therefore the "Save" button will save a .cvs table of the current tree. With the "Load" button you may call a previous saved layout. If the loaded scene in MM almost fits to the layout you'll have a nicer start next time you use SceneManager.

So far. Download below (source included in the .app bundle/Contents/Resources/MMSceneManager_01.py). Use it free but at your own risk, without any warranty.
Thanks to all the guys providing info about used modules (Tkinter and Python) all over the web!

"

 

Just an example of what you can do organising your scene that way:

 

 

 

 

 



Gunter Weber
Triangle Artisan

0 Likes

MagWeb
Advisor
Advisor

Forum soft ate the screencast above:

 

 

 

 

 



Gunter Weber
Triangle Artisan

0 Likes

MagWeb
Advisor
Advisor

Also:

I posted a second script allowing stuff like that:

 

 

 

This post, usage instructions, script + screencast was marked and deleted as SPAM. 

Should I add some emoji?



Gunter Weber
Triangle Artisan

0 Likes

MagWeb
Advisor
Advisor

OK, the return of the deleted post so a

 

3. Script:

MM Slicer 

 

Download below

 

I did this script to automate a workflow I explained here . I post it as it is, without any warranty at your own risk, in the hope you find it useful. 

 

Why to use it:

Older versions had a tool to horizontally cut an object into 3 dimensional slices of the same height. This functionality had to be removed. This script adds the possibility to insert registration dowels for better mounting the machined output later on.

 

What this script does:

The mmApi Python code will cut activated objects. Visible, but not active objects are used to:

  1. Flip its surface normals and combine them to the active objects to generate inside cavities.
  2. (optional) Cut a positive duplicate a bit higher to generate dowels to fill the cavities.

The script sorts the resulting parts and fitting dowels and combines the them to final slices with registration dowels.

 

Usage:

  1. Hide all objects you don’t want to cut.
  2. Add some cylinder objects from MESHMIX/Primitives as separate objects dropping them to empty space. Scale and move them inside the objects to be cut.
  3. Activate the objects to cut, don’t activate the cylinders.
  4. Run the script. A little GUI will pop up. undefined 
  5. Click Slice 
  6. Save STLs generates a folder. Put in its name in the file dialog (e.g: Bunny). Now MM writes all slices as individual files to that folder (e.g.: Bunny1.stl)

 

The script in action:

 

 

 



Gunter Weber
Triangle Artisan

0 Likes

hfcandrew
Advisor
Advisor

You never cease to amaze me. You're "Tool Manager" has just saved me about 2 minutes of repetitive clicking multiplied 5-10 times a day. <3!!!

 

I noticed 'Tool Manager does not allow for  several 'selection' based functions such as "Select Visible", "Contract Ring" and "Invert". Also an auto-pause feature for when something needs to selected manually, before moving onto the next tool.

 

Is there any way to incorporate these functions? This would save me another minute per job... 5-10 times a day.

0 Likes

MagWeb
Advisor
Advisor

Things can be improved...

There are some tools needing some "seed selection".  One could construct such a seed for SelectVisible (for the actual seed is ignored by SelectVisible if it in not visible) by ray casting. Pretty sure that's doable...

Think a Invert selection can be called via api as well...

Contract/ExpandRing: These one click actions need to count the times you call the commands... let's see...

 

Break points to perform the cue?: Think there's something here which I can polish and add to the code...

 

 



Gunter Weber
Triangle Artisan

0 Likes

hfcandrew
Advisor
Advisor

Amazing, because right now for my work flow i need to align and transform the foot, pause to select visible, contract rings a few times, pause to manually select a few patches of triangles by hand as needed, then smooth the boundary, invert selection, delete it. Select the toes, repeat previous steps etc... so currently there is the option to save a 'select' tool but you cannot use it for anything because it does not pause to give you a chance to select what you need.

 

I eagerly await your 'v2.0' !

0 Likes

hfcandrew
Advisor
Advisor

I found a bug in the 'transform' function, might be as simple as a typo. When you try to save a tool for transform that has an XYX rotation as a parameter of it, it seems to save it as an XYZ scale parameter.

 

See attached for screen shots and .cvs

 

I wanted to rotate Y 90 degrees, when i saved the tool and ran it, it did not rotate but instead scaled X 1.787 and Z 0.5596 and left Y as 1. 

0 Likes

MagWeb
Advisor
Advisor

Instead of writing the rotation matrix to the .csv there's still the SWIG object.

Did you edit def get_toolparam_mat3f(remote, param_name): in tool.py ? This file is in the mm directory. You need to change it the way I described above (see 1. post here and the code snippet in its How to run this script section).

Seems to be a bug in the api....



Gunter Weber
Triangle Artisan

0 Likes

MagWeb
Advisor
Advisor

Argh... just noticed: I posted a wrong ToolManager script version above. Sorry.

Unfortunately forum soft doesn't allow editing former posts. 

As V2 is almost ready I recommend waiting for this...



Gunter Weber
Triangle Artisan

0 Likes

hfcandrew
Advisor
Advisor

Oh okay. Good to know, I'm excited! Haha and feel no rush my friend.

 

I did try editing the code as outlined, but I must have done it wrong, it only partially fixed the rotate, but then made translate not work correctly anymore. I think I misinterpreted your instructions.

 

Again as a non-coder, I tried a couple different combinations of editing the single line, then tried adding that whole section in, then adding that whole section in but deleting the old one.

 

Which method is correct? ...or ya, I can easily wait until v2

 

Thanks again! (ps. Not all heroes wear capes)

0 Likes

MagWeb
Advisor
Advisor

In thew hope it might be useful, at your own risk:

 

ToolManager V2:

 

not tested that much ( bunnies were busy last days to hide egges):

 

Added:

- You can run a cue of commands towards the list’s end from a current item (> PlayDown)

- You can add a break to a cue of commands. (> AddBreak). Use PlayDown to continue the listed commands below a break.

- You can modify a current selection (> AddSel)

- detection of tools needing a selection: Script will pause if a tool needs some selection( use PlayDown to continue).

- You can store a certain aspect (StoreCam). Useful for actions like SelectVisible…

- You can undo a PlayAll cue via UndoAll

- You can undo a PlayDown cue via UndoLast

 

 

Changes (compared to ToolManager(V1):

- Label of AutoSet changed to PlayAll

- Label of +/- Autro changed to +/- Skip

- Hacking  of mm/tool.py  NOT needed any more. So if you did the hack to run ToolManager V1 (see 1. post of this thread) undo it to:

def get_toolparam_mat3f(remote, param_name):
    """Returns the current value of the given Tool parameter, or empty list if the parameter is not found."""
    cmd = mmapi.StoredCommands()
    key = cmd.AppendGetToolParameterCommand(param_name)
    remote.runCommand(cmd)
    m = mmapi.mat3f()
    bFound = cmd.GetToolParameterCommandResult(key, m)
    if bFound:
        return m 
    else:
        return ()

+ some bugs (as the rotation matrix issue) should be fixed.



Gunter Weber
Triangle Artisan

0 Likes

hfcandrew
Advisor
Advisor
Thank you so much! So I'm been playing around and you're correct in that there is definitely some functionality/ideas/quality of life/workflow/debugging things required, haha! Some more important than others, but I'll be your debugger and list all I've come across.
 
  • I forgot to mention the 'Click and Drag' was not working for me previously of v1 or currently on v2 for moving items on the GUI. Might be a PC mouse vs Mac mouse issue?
  • On the GUI the display text that pops up often fills the whole screen pushing and hiding all other buttons & info out of the way, especially when a function fails as it displays a long text error (Normal and with Error.png)
  • The 'pause to select' on the 'select' tool you mentioned does not pause
  • Face transforms with XYZ translations of a selection do not save, so it just runs through the the tool without apply anything.
  • While using the script every time I use the undo/undo all it autosaves  a copy of a .mix in "Documents\meshmixer\autosave" and changes the current working filename to 'managersave.mix'
  • The 'storecam' is a great idea but not quite working. There is like this disconnect between the view cube and the screen. And also the panning mouse function doesnt work when the camera is messed up, it kind of pans and zooms instead of the just panning. However if you go to rotate as normal with the mouse, it corrects itself 100% (Cam bug.png)
  • Can't 'update cam' (as you can update the tool)
  • The update tool is inconsistent and doesn't always seem to work on all tools, still trialing which ones work and which ones dont
  • So far for sure the 'update tool' does not update the 'flip' check box for 'align'
  • When you 'save set' it saves the .cvs with a empty row in between each row, so when you reload it, it loads in the GUI with lots of blank lines filling up the screen. (I have just been opening the cvs and deleting the blank rows, but would nice cosmetically if it did not make any blank lines)
  • The 'select visible' does not work when doing 'play all' but works when you just double click on it to run it.
  • After some functions complete, it seems to 'deselect' the selection. This interrupts the workflow chain of commands so I need to add a break so I can reselect a facegroup again
It might be a good idea if the script does not 'auto accept' each tool, make it an 'AddCom' option that you need to put in after each tool. Maybe that will fix some things.
 
Right now, for at least my personal usage, the pause for selection is the most important.
0 Likes

MagWeb
Advisor
Advisor
Thanks for your feedback!
Sorry for the late reply but there are several fires here to fight right now.
 
  • I forgot to mention the 'Click and Drag' was not working for me previously of v1 or currently on v2 for moving items on the GUI. Might be a PC mouse vs Mac mouse issue?

I know about a difference of RMB and MMB (on WIN the right mouse button is 3 while it is 2 on a MAC. The middle mouse button is 2 on WIN while it is 3 on MAC). But that should not affect  LMB dragging (keeping LMB pressed) in the list. For the RMB action (renaming an item via RMB double click) you need to change the code (there's a comment in the # Tkinter GUI stuff& trigger buttons section in line 699) or use MMB instead.

Did you try the SceneManager code above? Does dragging the items work there for you?

 

  • On the GUI the display text that pops up often fills the whole screen pushing and hiding all other buttons & info out of the way, especially when a function fails as it displays a long text error (Normal and with Error.png)

Thanks, I called the wrong column of the table (parameters instead of the tool's name) > fixed for the next release.

 

  • The 'pause to select' on the 'select' tool you mentioned does not pause

SELECT doesn't need a selection and therefor the cue doesn't stop. Only the tools you get in MM after you did a selection pause automatically if there's no selection and call SELECT at pause. So you don't have to store SELECT before a tool needing selection. Store SELECT only if you want to define stuff like the brush size or to get rid of an existing selection. 

 

  • Face transforms with XYZ translations of a selection do not save, so it just runs through the the tool without apply anything.

Can't reproduce that. If you store the tool without having used the transform widget it will be skipped. But if you did a transformation and stored the tool it in this state it should apply the transformation. Doesn't that work on your side?

 

  • While using the script every time I use the undo/undo all it autosaves  a copy of a .mix in "Documents\meshmixer\autosave" and changes the current working filename to 'managersave.mix'

Yes, instead of undoing the whole cue of commands I write a restore .mix at a Play start. Unfortunately there's no way I know to get the name of the loaded file via mmApi to name that restore file. The only way would be to do loading of the file in MM via the Manager or to implement a entry box to name the restore file manually. Maybe I add an optional real MM Undo/Redo (keeping the current file) step by step in the future.

  • The 'storecam' is a great idea but not quite working. There is like this disconnect between the view cube and the screen. And also the panning mouse function doesnt work when the camera is messed up, it kind of pans and zooms instead of the just panning. However if you go to rotate as normal with the mouse, it corrects itself 100% (Cam bug.png)

Hmm, I know that the cam jumps back to the position it had before setting a certain position via mmApi if you navigate in MM again. So this feature is meant mainly for SelectVisible and that works fine here. But what I see on your screenshot seems to be some MM rendering issue.... Or is it a result of a cue? If you  play a cue of several (cam positions plus a following  appendVisible (from AddSel)): Does that work?

 

  • Can't 'update cam' (as you can update the tool)

Maybe in the future - if we can solve such issues as above

 

  • The update tool is inconsistent and doesn't always seem to work on all tools, still trialing which ones work and which ones dont

That may be a focus handling issue: If you set new parameters in MM don't click on the UpdateTool button directly but give the ToolManager window (it's a different application) the focus first (e.g. by clicking on the help text) and then hit the update button.

 

  • So far for sure the 'update tool' does not update the 'flip' check box for 'align'

Here it updates fine. Could you try with explicit focus on the manager window?

 

  • When you 'save set' it saves the .cvs with a empty row in between each row, so when you reload it, it loads in the GUI with lots of blank lines filling up the screen. (I have just been opening the cvs and deleting the blank rows, but would nice cosmetically if it did not make any blank lines)

Saw that loading your .csv. Seems separation of lines acts different on Win. Gonna look into that...

 

  • The 'select visible' does not work when doing 'play all' but works when you just double click on it to run it.

SelectVisible discards the current selection and selects the currently visible faces. To append faces to the current selection you need to add appendVisible to the list of commands. Is that what you want to get?

 

  • After some functions complete, it seems to 'deselect' the selection. This interrupts the workflow chain of commands so I need to add a break so I can reselect a facegroup again

Maybe that's a result of not needed SELECT steps in the cue or a switch to a tool not using a selection at all? As in pure MM you will loose selections doing certain tasks.

 

It might be a good idea if the script does not 'auto accept' each tool, make it an 'AddCom' option that you need to put in after each tool. Maybe that will fix some things.

 

I had such a auto accept option in my very first code (and it's still in the table). Let's see...

 

Thanks!



Gunter Weber
Triangle Artisan

0 Likes

hfcandrew
Advisor
Advisor
Oh my, fires!? Be safe out there, don't worry about me if you got bigger things to worry about!
 
As usual you are right about many things here. A few of the things that were not functioning, or at least I thought were not, now are after trying again. It was a combination of restarting/reloading everything and of course user error on my end. See below for my responses and an update on the issues 
 
 

I know about a difference of RMB and MMB (on WIN the right mouse button is 3 while it is 2 on a MAC. The middle mouse button is 2 on WIN while it is 3 on MAC). But that should not affect  LMB dragging (keeping LMB pressed) in the list. For the RMB action (renaming an item via RMB double click) you need to change the code (there's a comment in the # Tkinter GUI stuff& trigger buttons section in line 699) or use MMB instead.

Did you try the SceneManager code above? Does dragging the items work there for you?

     - I have not tried changing TKinter or downloading the SceneManger yet, I will try it later this week 

 

Thanks, I called the wrong column of the table (parameters instead of the tool's name) > fixed for the next release.

     - Nice!

 

SELECT doesn't need a selection and therefor the cue doesn't stop. Only the tools you get in MM after you did a selection pause automatically if there's no selection and call SELECT at pause. So you don't have to store SELECT before a tool needing selection. Store SELECT only if you want to define stuff like the brush size or to get rid of an existing selection.

     - Understood. Yes I was using too many.

 

Can't reproduce that. If you store the tool without having used the transform widget it will be skipped. But if you did a transformation and stored the tool it in this state it should apply the transformation. Doesn't that work on your side?

     - Clicking on the toolmanager window first has fixed this, I think was also just doing something wrong with the order of actions 

 

Yes, instead of undoing the whole cue of commands I write a restore .mix at a Play start. Unfortunately there's no way I know to get the name of the loaded file via mmApi to name that restore file. The only way would be to do loading of the file in MM via the Manager or to implement a entry box to name the restore file manually. Maybe I add an optional real MM Undo/Redo (keeping the current file) step by step in the future.

- Okay. Not a big concern of mine.

 

Hmm, I know that the cam jumps back to the position it had before setting a certain position via mmApi if you navigate in MM again. So this feature is meant mainly for SelectVisible and that works fine here. But what I see on your screenshot seems to be some MM rendering issue.... Or is it a result of a cue? If you  play a cue of several (cam positions plus a following  appendVisible (from AddSel)): Does that work?

- No is does not work. See screencast.

 

Maybe in the future - if we can solve such issues as above

- Yep!

 

That may be a focus handling issue: If you set new parameters in MM don't click on the UpdateTool button directly but give the ToolManager window (it's a different application) the focus first (e.g. by clicking on the help text) and then hit the update button.

- Clicking on the toolmanager window first has fixed this, I think was also just doing something wrong with the order of actions  

 

Here it updates fine. Could you try with explicit focus on the manager window?

- Clicking on the toolmanager window first has fixed this, I think was also just doing something wrong with the order of actions  

 

Saw that loading your .csv. Seems separation of lines acts different on Win. Gonna look into that...

- Thanks  

 

SelectVisible discards the current selection and selects the currently visible faces. To append faces to the current selection you need to add appendVisible to the list of commands. Is that what you want to get?

- Yep. Works fine. User error again 

 

Maybe that's a result of not needed SELECT steps in the cue or a switch to a tool not using a selection at all? As in pure MM you will loose selections doing certain tasks.

- Ya mentioned above already, user error again

  

I had such as auto accept option in my very first code (and it's still in the table). Let's see...

- Sounds good. It may be a good option for scenarios when needing to pull up a tool up with most the defaults preset but want to change like 1 parameter before accepting and moving on

 

 

So see the below screencast of playing around building a work flow and the .stl and .cvs.

Have any thoughts on what I'm doing wrong with the camera?

 

Also I found another issue, when doing a rotational transform, it saves properly when in World but not Local

0 Likes

hfcandrew
Advisor
Advisor

Didn't allow two attachments in one post. .stl below

0 Likes

hfcandrew
Advisor
Advisor

Screen cast also did not post. I'll try again

 

 

0 Likes

MagWeb
Advisor
Advisor

Thanks for the screencast.

Just a hint on your workflow: If you insert a SelectAll above SelectVisible you can run the whole cue without any interaction.

I see the rendering issues on restoring a cam position. But it seems that the following SelectVisible and the cue below does its job as intended. Restoring such a cam position works fine here and there are no such rendering failures (but there's a TitanX GPU built in...). You might try whether it works disabling ShowViewCube and disable EnableAntiAliasedRendering in Preferences or even switch to BasicRendering.

For there are rendering issues MM when no printer is selected maybe you try it with the printer bed being visible

 

Also compiling the code to a standalone application and running the resulting .exe (or .app on a Mac) should work better (but I'm not sure if it fixes that rendering problem). Compiling also allows to run the app on systems where Python or mmApi isn't installed at all.



Gunter Weber
Triangle Artisan

0 Likes

MagWeb
Advisor
Advisor

Wait, seems I can reproduce the issue now...



Gunter Weber
Triangle Artisan

0 Likes

Type a product name

______
icon-svg-close-thick

Cookie preferences

Your privacy is important to us and so is an optimal experience. To help us customize information and build applications, we collect data about your use of this site.

May we collect and use your data?

Learn more about the Third Party Services we use and our Privacy Statement.

Strictly necessary – required for our site to work and to provide services to you

These cookies allow us to record your preferences or login information, respond to your requests or fulfill items in your shopping cart.

Improve your experience – allows us to show you what is relevant to you

These cookies enable us to provide enhanced functionality and personalization. They may be set by us or by third party providers whose services we use to deliver information and experiences tailored to you. If you do not allow these cookies, some or all of these services may not be available for you.

Customize your advertising – permits us to offer targeted advertising to you

These cookies collect data about you based on your activities and interests in order to show you relevant ads and to track effectiveness. By collecting this data, the ads you see will be more tailored to your interests. If you do not allow these cookies, you will experience less targeted advertising.

icon-svg-close-thick

THIRD PARTY SERVICES

Learn more about the Third-Party Services we use in each category, and how we use the data we collect from you online.

icon-svg-hide-thick

icon-svg-show-thick

Strictly necessary – required for our site to work and to provide services to you

Qualtrics
We use Qualtrics to let you give us feedback via surveys or online forms. You may be randomly selected to participate in a survey, or you can actively decide to give us feedback. We collect data to better understand what actions you took before filling out a survey. This helps us troubleshoot issues you may have experienced. Qualtrics Privacy Policy
Akamai mPulse
We use Akamai mPulse to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Akamai mPulse Privacy Policy
Digital River
We use Digital River to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Digital River Privacy Policy
Dynatrace
We use Dynatrace to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Dynatrace Privacy Policy
Khoros
We use Khoros to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Khoros Privacy Policy
Launch Darkly
We use Launch Darkly to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Launch Darkly Privacy Policy
New Relic
We use New Relic to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. New Relic Privacy Policy
Salesforce Live Agent
We use Salesforce Live Agent to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Salesforce Live Agent Privacy Policy
Wistia
We use Wistia to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Wistia Privacy Policy
Tealium
We use Tealium to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Tealium Privacy Policy
Upsellit
We use Upsellit to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Upsellit Privacy Policy
CJ Affiliates
We use CJ Affiliates to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. CJ Affiliates Privacy Policy
Commission Factory
We use Commission Factory to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Commission Factory Privacy Policy
Google Analytics (Strictly Necessary)
We use Google Analytics (Strictly Necessary) to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Google Analytics (Strictly Necessary) Privacy Policy
Typepad Stats
We use Typepad Stats to collect data about your behaviour on our sites. This may include pages you’ve visited. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our platform to provide the most relevant content. This allows us to enhance your overall user experience. Typepad Stats Privacy Policy
Geo Targetly
We use Geo Targetly to direct website visitors to the most appropriate web page and/or serve tailored content based on their location. Geo Targetly uses the IP address of a website visitor to determine the approximate location of the visitor’s device. This helps ensure that the visitor views content in their (most likely) local language.Geo Targetly Privacy Policy
SpeedCurve
We use SpeedCurve to monitor and measure the performance of your website experience by measuring web page load times as well as the responsiveness of subsequent elements such as images, scripts, and text.SpeedCurve Privacy Policy
Qualified
Qualified is the Autodesk Live Chat agent platform. This platform provides services to allow our customers to communicate in real-time with Autodesk support. We may collect unique ID for specific browser sessions during a chat. Qualified Privacy Policy

icon-svg-hide-thick

icon-svg-show-thick

Improve your experience – allows us to show you what is relevant to you

Google Optimize
We use Google Optimize to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Google Optimize Privacy Policy
ClickTale
We use ClickTale to better understand where you may encounter difficulties with our sites. We use session recording to help us see how you interact with our sites, including any elements on our pages. Your Personally Identifiable Information is masked and is not collected. ClickTale Privacy Policy
OneSignal
We use OneSignal to deploy digital advertising on sites supported by OneSignal. Ads are based on both OneSignal data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that OneSignal has collected from you. We use the data that we provide to OneSignal to better customize your digital advertising experience and present you with more relevant ads. OneSignal Privacy Policy
Optimizely
We use Optimizely to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Optimizely Privacy Policy
Amplitude
We use Amplitude to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Amplitude Privacy Policy
Snowplow
We use Snowplow to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Snowplow Privacy Policy
UserVoice
We use UserVoice to collect data about your behaviour on our sites. This may include pages you’ve visited. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our platform to provide the most relevant content. This allows us to enhance your overall user experience. UserVoice Privacy Policy
Clearbit
Clearbit allows real-time data enrichment to provide a personalized and relevant experience to our customers. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID.Clearbit Privacy Policy
YouTube
YouTube is a video sharing platform which allows users to view and share embedded videos on our websites. YouTube provides viewership metrics on video performance. YouTube Privacy Policy

icon-svg-hide-thick

icon-svg-show-thick

Customize your advertising – permits us to offer targeted advertising to you

Adobe Analytics
We use Adobe Analytics to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Adobe Analytics Privacy Policy
Google Analytics (Web Analytics)
We use Google Analytics (Web Analytics) to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Google Analytics (Web Analytics) Privacy Policy
AdWords
We use AdWords to deploy digital advertising on sites supported by AdWords. Ads are based on both AdWords data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that AdWords has collected from you. We use the data that we provide to AdWords to better customize your digital advertising experience and present you with more relevant ads. AdWords Privacy Policy
Marketo
We use Marketo to send you more timely and relevant email content. To do this, we collect data about your online behavior and your interaction with the emails we send. Data collected may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, email open rates, links clicked, and others. We may combine this data with data collected from other sources to offer you improved sales or customer service experiences, as well as more relevant content based on advanced analytics processing. Marketo Privacy Policy
Doubleclick
We use Doubleclick to deploy digital advertising on sites supported by Doubleclick. Ads are based on both Doubleclick data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Doubleclick has collected from you. We use the data that we provide to Doubleclick to better customize your digital advertising experience and present you with more relevant ads. Doubleclick Privacy Policy
HubSpot
We use HubSpot to send you more timely and relevant email content. To do this, we collect data about your online behavior and your interaction with the emails we send. Data collected may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, email open rates, links clicked, and others. HubSpot Privacy Policy
Twitter
We use Twitter to deploy digital advertising on sites supported by Twitter. Ads are based on both Twitter data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Twitter has collected from you. We use the data that we provide to Twitter to better customize your digital advertising experience and present you with more relevant ads. Twitter Privacy Policy
Facebook
We use Facebook to deploy digital advertising on sites supported by Facebook. Ads are based on both Facebook data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Facebook has collected from you. We use the data that we provide to Facebook to better customize your digital advertising experience and present you with more relevant ads. Facebook Privacy Policy
LinkedIn
We use LinkedIn to deploy digital advertising on sites supported by LinkedIn. Ads are based on both LinkedIn data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that LinkedIn has collected from you. We use the data that we provide to LinkedIn to better customize your digital advertising experience and present you with more relevant ads. LinkedIn Privacy Policy
Yahoo! Japan
We use Yahoo! Japan to deploy digital advertising on sites supported by Yahoo! Japan. Ads are based on both Yahoo! Japan data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Yahoo! Japan has collected from you. We use the data that we provide to Yahoo! Japan to better customize your digital advertising experience and present you with more relevant ads. Yahoo! Japan Privacy Policy
Naver
We use Naver to deploy digital advertising on sites supported by Naver. Ads are based on both Naver data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Naver has collected from you. We use the data that we provide to Naver to better customize your digital advertising experience and present you with more relevant ads. Naver Privacy Policy
Quantcast
We use Quantcast to deploy digital advertising on sites supported by Quantcast. Ads are based on both Quantcast data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Quantcast has collected from you. We use the data that we provide to Quantcast to better customize your digital advertising experience and present you with more relevant ads. Quantcast Privacy Policy
Call Tracking
We use Call Tracking to provide customized phone numbers for our campaigns. This gives you faster access to our agents and helps us more accurately evaluate our performance. We may collect data about your behavior on our sites based on the phone number provided. Call Tracking Privacy Policy
Wunderkind
We use Wunderkind to deploy digital advertising on sites supported by Wunderkind. Ads are based on both Wunderkind data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Wunderkind has collected from you. We use the data that we provide to Wunderkind to better customize your digital advertising experience and present you with more relevant ads. Wunderkind Privacy Policy
ADC Media
We use ADC Media to deploy digital advertising on sites supported by ADC Media. Ads are based on both ADC Media data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that ADC Media has collected from you. We use the data that we provide to ADC Media to better customize your digital advertising experience and present you with more relevant ads. ADC Media Privacy Policy
AgrantSEM
We use AgrantSEM to deploy digital advertising on sites supported by AgrantSEM. Ads are based on both AgrantSEM data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that AgrantSEM has collected from you. We use the data that we provide to AgrantSEM to better customize your digital advertising experience and present you with more relevant ads. AgrantSEM Privacy Policy
Bidtellect
We use Bidtellect to deploy digital advertising on sites supported by Bidtellect. Ads are based on both Bidtellect data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Bidtellect has collected from you. We use the data that we provide to Bidtellect to better customize your digital advertising experience and present you with more relevant ads. Bidtellect Privacy Policy
Bing
We use Bing to deploy digital advertising on sites supported by Bing. Ads are based on both Bing data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Bing has collected from you. We use the data that we provide to Bing to better customize your digital advertising experience and present you with more relevant ads. Bing Privacy Policy
G2Crowd
We use G2Crowd to deploy digital advertising on sites supported by G2Crowd. Ads are based on both G2Crowd data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that G2Crowd has collected from you. We use the data that we provide to G2Crowd to better customize your digital advertising experience and present you with more relevant ads. G2Crowd Privacy Policy
NMPI Display
We use NMPI Display to deploy digital advertising on sites supported by NMPI Display. Ads are based on both NMPI Display data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that NMPI Display has collected from you. We use the data that we provide to NMPI Display to better customize your digital advertising experience and present you with more relevant ads. NMPI Display Privacy Policy
VK
We use VK to deploy digital advertising on sites supported by VK. Ads are based on both VK data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that VK has collected from you. We use the data that we provide to VK to better customize your digital advertising experience and present you with more relevant ads. VK Privacy Policy
Adobe Target
We use Adobe Target to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Adobe Target Privacy Policy
Google Analytics (Advertising)
We use Google Analytics (Advertising) to deploy digital advertising on sites supported by Google Analytics (Advertising). Ads are based on both Google Analytics (Advertising) data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Google Analytics (Advertising) has collected from you. We use the data that we provide to Google Analytics (Advertising) to better customize your digital advertising experience and present you with more relevant ads. Google Analytics (Advertising) Privacy Policy
Trendkite
We use Trendkite to deploy digital advertising on sites supported by Trendkite. Ads are based on both Trendkite data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Trendkite has collected from you. We use the data that we provide to Trendkite to better customize your digital advertising experience and present you with more relevant ads. Trendkite Privacy Policy
Hotjar
We use Hotjar to deploy digital advertising on sites supported by Hotjar. Ads are based on both Hotjar data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Hotjar has collected from you. We use the data that we provide to Hotjar to better customize your digital advertising experience and present you with more relevant ads. Hotjar Privacy Policy
6 Sense
We use 6 Sense to deploy digital advertising on sites supported by 6 Sense. Ads are based on both 6 Sense data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that 6 Sense has collected from you. We use the data that we provide to 6 Sense to better customize your digital advertising experience and present you with more relevant ads. 6 Sense Privacy Policy
Terminus
We use Terminus to deploy digital advertising on sites supported by Terminus. Ads are based on both Terminus data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Terminus has collected from you. We use the data that we provide to Terminus to better customize your digital advertising experience and present you with more relevant ads. Terminus Privacy Policy
StackAdapt
We use StackAdapt to deploy digital advertising on sites supported by StackAdapt. Ads are based on both StackAdapt data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that StackAdapt has collected from you. We use the data that we provide to StackAdapt to better customize your digital advertising experience and present you with more relevant ads. StackAdapt Privacy Policy
The Trade Desk
We use The Trade Desk to deploy digital advertising on sites supported by The Trade Desk. Ads are based on both The Trade Desk data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that The Trade Desk has collected from you. We use the data that we provide to The Trade Desk to better customize your digital advertising experience and present you with more relevant ads. The Trade Desk Privacy Policy
RollWorks
We use RollWorks to deploy digital advertising on sites supported by RollWorks. Ads are based on both RollWorks data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that RollWorks has collected from you. We use the data that we provide to RollWorks to better customize your digital advertising experience and present you with more relevant ads. RollWorks Privacy Policy

Are you sure you want a less customized experience?

We can access your data only if you select "yes" for the categories on the previous screen. This lets us tailor our marketing so that it's more relevant for you. You can change your settings at any time by visiting our privacy statement

Your experience. Your choice.

We care about your privacy. The data we collect helps us understand how you use our products, what information you might be interested in, and what we can improve to make your engagement with Autodesk more rewarding.

May we collect and use your data to tailor your experience?

Explore the benefits of a customized experience by managing your privacy settings for this site or visit our Privacy Statement to learn more about your options.