Search found 39 matches

by Kolya
01 Dec 2022, 12:16
Forum: Modeling
Topic: changing of models
Replies: 9
Views: 10917

Re: changing of models

Hello, I made a script. Select objects to replace, run the script and pick object to replace with. //JScript OpenUndo(""); var sel = Selection; var sel_count = sel.Count; if(sel_count > 0){ var pick = PickObject("Duplicate", "Clone"); var button_pressed = pick(0); if(bu...
by Kolya
03 Sep 2022, 19:02
Forum: Scripts
Topic: help with last similar operation in stack
Replies: 65
Views: 39910

Re: help with last similar operation in stack

Finished it. The plugin creates two nulls that control the center of spin, angle and number of subdivisions.

https://drive.google.com/file/d/11uxNEI ... sp=sharing
by Kolya
29 Aug 2022, 21:19
Forum: Scripts
Topic: help with last similar operation in stack
Replies: 65
Views: 39910

Re: help with last similar operation in stack

Hello, I made a quick prototype with ICE. I'll try to finish it when I have free time
by Kolya
24 Aug 2022, 11:06
Forum: Scripts
Topic: help with last similar operation in stack
Replies: 65
Views: 39910

Re: help with last similar operation in stack

Hello, you can achieve something similar by changing object's center and then applying Extrude Op.
If you wont, I can try to make a plugin to optimize the process a little.

by Kolya
27 Jul 2022, 15:29
Forum: Scripts
Topic: help with last similar operation in stack
Replies: 65
Views: 39910

Re: help with last similar operation in stack

That's for changing transformation referential mode (buttons on the transform panel Global, Local, View etc.)

Code: Select all

SetTransformRefMode(8);
by Kolya
25 Jul 2022, 09:43
Forum: Scripts
Topic: help with last similar operation in stack
Replies: 65
Views: 39910

Re: help with last similar operation in stack

Sorry, I don't know a way to get current pivot position.
by Kolya
24 Jul 2022, 10:45
Forum: Scripts
Topic: help with last similar operation in stack
Replies: 65
Views: 39910

Re: help with last similar operation in stack

Hello, I've made a plugin for that. Commands SetTransformAxisX(), SetTransformAxisY(), SetTransformAxisZ() make only one specific axis active or all active, ToggleTransformAxisX(), ToggleTransformAxisY(), ToggleTransformAxisZ() enable/disable specific axis https://drive.google.com/file/d/12JNAMb6NmB...
by Kolya
30 May 2022, 09:06
Forum: Programming
Topic: Center Selection Filter
Replies: 3
Views: 10071

Re: Center Selection Filter

to check if center mode is enabled: Application.GetUserPref("SI3D_SRT_CENTER")
to toggle between: Application.SetUserPref("SI3D_SRT_CENTER", not Application.GetUserPref("SI3D_SRT_CENTER"))
by Kolya
06 Jan 2022, 09:53
Forum: Scripts
Topic: help with last similar operation in stack
Replies: 65
Views: 39910

Re: help with last similar operation in stack

So you want quickthickness to work as "Interactive thickness" but in opposite direction, without inverting normals when the thickness parameter goes negative? # QuickThickness import win32com.client from win32com.client import constants c = win32com.client.constants null = None false = 0 t...
by Kolya
05 Jan 2022, 10:15
Forum: Scripts
Topic: help with last similar operation in stack
Replies: 65
Views: 39910

Re: help with last similar operation in stack

1. Can you please explain it better, in more detail, because I'm not familiar with quickthickness plugin.
2. Keyboard Mapping > Group:Tweak Tool > Command:Slide Components and Weld Components
by Kolya
24 Dec 2021, 10:31
Forum: Scripts
Topic: help with last similar operation in stack
Replies: 65
Views: 39910

Re: help with last similar operation in stack

1. Did you download 64 bit version of Dupalong? 2. Do you mean Inset Polygons? then the easiest way to do that would be by using bevel and changing center parameter if(Selection.Filter.Name == "Polygon"){ var sel = selection.GetAsText(); SelectFilter(siEdgeFilter); var oldEdgeSel = selecti...
by Kolya
10 Dec 2021, 18:48
Forum: ICE
Topic: Create Polygon Meshes from Instance Shapes
Replies: 24
Views: 32397

Re: Create Polygon Meshes from Instance Shapes

hello, it's strange that it gives a link to a .zip file when it's actually .rar here is the correct link : http://si-community.com/download/lb/gla ... eShape.rar
by Kolya
27 Nov 2021, 09:14
Forum: Scripts
Topic: help with last similar operation in stack
Replies: 65
Views: 39910

Re: help with last similar operation in stack

Hi, to duplicate along curve there is Dupalong addon in the resources section
by Kolya
04 Nov 2021, 09:19
Forum: Scripts
Topic: help with last similar operation in stack
Replies: 65
Views: 39910

Re: help with last similar operation in stack

This plugin will make SplitEdgeTool Split All Parallel Edges on LMB and Split Edge on MMB https://drive.google.com/file/d/1WbXcrh ... sp=sharing
by Kolya
03 Nov 2021, 14:27
Forum: Scripts
Topic: help with last similar operation in stack
Replies: 65
Views: 39910

Re: help with last similar operation in stack

2. SetTransientReferencePlane(); var refMode = GetUserPref("3D_TRANSFO_REFERENTIAL_CHANGED") if(refMode == 3) SetUserPref("3D_TRANSFO_REFERENTIAL_CHANGED", 19);//ref(3) + cog(16) else SetUserPref("3D_TRANSFO_REFERENTIAL_CHANGED", 3); 3. So you wont SplitEdgeTool() to Sp...
by Kolya
02 Nov 2021, 17:33
Forum: Scripts
Topic: help with last similar operation in stack
Replies: 65
Views: 39910

Re: help with last similar operation in stack

Hello! 1. var refMode = GetUserPref("3D_TRANSFO_REFERENTIAL_CHANGED") if(refMode == 2) SetUserPref("3D_TRANSFO_REFERENTIAL_CHANGED", 17);//global(1) + cog(16) else SetUserPref("3D_TRANSFO_REFERENTIAL_CHANGED", 2);//local(2) 2. Sorry I don't really get it, can you please...