3ds Max :: Populate Function - Possible To Swap Or Change Models?

May 17, 2013

I just want to ask if its possible to swap or change the models wich are used by the new populate function? The texture can be changed when i overwrite the original ones in the temp folder. Is that true?

View 1 Replies


ADVERTISEMENT

AutoCAD Inventor :: Developing Casting Models Into Machining Models

Oct 6, 2011

We are looking for a workflow example of developing casting models into machining models.

Typically our castings are made from different materials (Fig-1) and then machining (Fig-2) are created from these castings.

Is creating the casting as an iPart (with different materials) and then deriving the machining from the casting the proper method?

Doing it this way seems to force us into making a machining for each casting material instead of just one machining that is an iPart. How should this be set-up for BOM purposes and for use with Vault (Base Version)?

View 3 Replies View Related

Photoshop :: Ruler Function Change In CS6

Jun 12, 2012

In CS4, I could crop a larger picture to a size such as 9"x12" without actually resizing it, just eliminating the unwanted areas. It seems this is no longer possible as now when cropping, the positions on the rulers are not marked as I determine the crop size.  So I can set the size to be 9x12, and whatever crops will expand to that, I assume with interpolated pixels and possible detail loss. 
 
If unconstrained is used, then you don't know what the size will be till the crop is done and it realigns with the rulers.

Before, I could either enter the numbers, such as 6"  8" 300dpi, if I wanted to enlarge a smaller image, as I still can do now. But also, with CS4, I  had made a preset with no numbers, similar to unconstrained, but with the positions showing on the rulers, so I could draw to whatever size I wanted, within a larger image, so when a crop was made, area was removed but there was no re figuring of the size.  This is more like cutting out a picture on paper, while now it seems only a stretching of the area can be done.

View 8 Replies View Related

AutoCAD .NET :: Create Function To Change Blocks

Nov 7, 2013

I have a series of blocks with all the same attribute tag names. I need to create a function that allows me to change a block from one to another within a drawing.

Can I do this by just changing the block ID? or do I need to go through and grab all the info from the old block and insert a new block with the attribute values and then delete the old block.

View 2 Replies View Related

3ds Max Modeling :: SET VOLUME Function To Change Shape Of Lattice

Jul 10, 2012

using the sub-object SET VOLUME function to change the shape of the lattice (down to the positions of the individual points) does not affect where the object deforms. The only way to alter the lattice is to go sub-object LATTICE and move the whole lattice prior to deformation.

View 8 Replies View Related

AutoCAD 2010 :: How To Change Use Pan Function When Push In Scroll

Jul 23, 2013

i have problem with my cad. When i push in scroll button in old settings i saw hand (pan function) and it was easy to move. Now when i push in scroll button i see cross with arrows and moving where i want is difficult. How can i change it (i want use pan function when i push in scroll).

View 3 Replies View Related

Illustrator :: How To Change Default Mouse Wheel Function To Zoom

May 20, 2013

I never use horizontal and vertical scrolling with the mouse wheel
 
I always Zoom
 
But I am forced to hold ALT down every time ...
 
I want mouse wheel to Zoom by default ...

View 1 Replies View Related

AutoCAD Inventor :: ILogic Function To Change Decimal Marker From Full Stops To Commas

Apr 5, 2013

e.g. 25,00mm instead of 25.00mm.

I have a huge list of drawings I need to apply this update to.  Updating Styles isn't really an option as we haven't enough consistency in the styles we have used.

Inventor 2013 Certified Professional

Autodesk Inventor Professional 2011
Windows 7 Enterprise, 64-bit

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: No Function Definition With Distance Function

Oct 25, 2013

This seems absolutly silly.

(setq p1 (getpoint))
(setq p2 (getpoint))

(setq Dist (distance p1 p2))

Why does this not work?

I'm trying to build a command to replace AutoCAD's "DI" command, to give distance and delta x, y, and z values in decimal and imperial, and keep the angles in XY plane and out of XY plane.

View 9 Replies View Related

AutoCAD Inventor :: Passing A Function Name To Another Function

Nov 13, 2012

I'm trying to be able to have a function run another function with the secondary function being passed as an argument to the first. I'm trying to create a recursive function and the recursive part works great. I just need to be able to have the recursive function run other functions to actually do stuff.

Here is something I found that should do what I need, mainly run a function from a function name in a variable.
 
Sub test() Dim ftnName As String Dim argument As String Dim result As String ftnName = "myFunction" argument = "cat" result = Application.Run(ftnName, argument) MsgBox resultEnd SubFunction myFunction(inString As String) As String myFunction = inString & " has " & Len(inString) & " letters."End Function

 However I get the error "object required" on the "result = Application.Run(ftnName, argument)" line. So I'm guessing the Inventor VBA doesn't like this method of doing this. I'm just hoping there is a way to do this or this function will be useless or reduced to hardcoding functions which still defeats the purpose.

View 2 Replies View Related

Photoshop :: Swap Faces

Dec 21, 2005

to swap a face over from one image to another. It is the same persons face but it is twisted slightly and i cant make it look right.

View 3 Replies View Related

3ds Max :: Populate People Flashing?

Mar 3, 2014

I have just rendered an animation with moving people trains cars etc. My people were done with populate. They are theonly objects that flash. All other animated objects are fine.

View 3 Replies View Related

Photoshop :: How To Swap 2 Layers In Photomerge

Oct 26, 2013

I have done a photomerge in PS CS6 of two birds in flight as the wings are clipped. The images merge nicely but the problem is that the blurred bird has been placed on top of the sharp bird, i.e. the top layer (bird with blurred eye) is blocking the bottom sharp bird. I have clicked and dragged the bottom layer to the higher position on the layers panel but the images do not swap positions.

View 6 Replies View Related

AutoCAD .NET :: Swap Layer Order?

Oct 24, 2011

i've to list all layers and objects in the drawing. I've got 2 checkedlistbox, one for layers, the second for objects.I've got 2 buttons, one up, one down, for swaping order. I've no problem with objects, but it seems a little more complicated with layers.I use this code to swap:

Using tr As Transaction = db.TransactionManager.StartTransaction Dim id1 As ObjectId = listLayerID(CB_List_Layer.SelectedIndex)Dim id2 As ObjectId = listLayerID(CB_List_Layer.SelectedIndex + 1) Dim first As DBObject = tr.GetObject(id1, OpenMode.ForWrite)Dim sec As DBObject = tr.GetObject(id2, OpenMode.ForWrite) first.UpgradeOpen()first.SwapIdWith(id2, True, True) tr.Commit() end using
 
id1 is the ID of the first layer, and id2 the id of the second layer. ListLayerId contains IDs of all layers. CB_List_Layer is my CheckedListbox.When is swap 2 layers, it don't swap objects in the layers. (ex : What i've got now :

Obj1, Obj2 in layer0 and Obj3, Obj4 in layer1 SWAP
Obj1,obj2 in layer1 and obj3,obj4 in Layer0.It's not what i want. I want :
Obj3,Obj4 in layer1 and Obj1,Obj2 in layer0)

View 2 Replies View Related

Photoshop :: How To Swap Heads In ONE Image

Sep 17, 2007

I have one pic of my mom and dad. I just want to swap the heads of my mom and dad. I keep trying and I have created a new layer. But when I cut my dads head and move it and then try to cut my moms head I can't go back to my dad's head and move it to where I want it.

View 3 Replies View Related

Maya :: Hotkeys Swap To Default

Aug 4, 2011

Basically at some point or another, maya swaps back to the default hotkey layout. Im not quite sure how or why. Sometimes it takes an hour before the problem arrives, other times minutes. Its not permanent tho, restarting the app will fix it.

I've tried deleting second language, installing keyboard software, searching for alternative pref. files etc., and no, capsLock is not on ^^.

View 5 Replies View Related

GIMP :: SWAP File Error

Aug 19, 2013

I can't get started - I have downloaded GIMP 2.8 but can't get it running as I get this error message:

"USER Installation Failed.

The GIMP user installation failed; see the log for details. It appears that you are using GIMP for the first time. GIMP will now create a folder named '/Users /andrzejnowosielski/Library/Application Support/GIMP/2.8' and copy some files to it.

Creating folder '/Users/myname/Library/Application Support/GIMP/2.8'..Cannot create folder '/Users/myname/Library/Application Support/GIMP/2.8': Permission denied" myname is my full name not myname......

I am using a Max with OSX version 10.7.5..I have checked all the relevant folders and made them all Read Write..I have tried making the relevant folders manually and re-starting GIMP but same message.

View 2 Replies View Related

AutoCAD .NET :: Swap Titleblock Between 2 Drawings

Feb 4, 2013

I have 2 files and I'd like to copy a titleblock from a template drawing and use it to replace an existing titleblock on an in progress drawing.  The titleblock on the in progress drawing has attributes, and I'd like to keep them when I put in the new titleblock.  The attribute tag names between the 2 titleblocks are the same.

I do not know the exact names of the titleblocks, only that they contain the words "title block" somewhere in their name.

I've developed for Inventor for a while now, but I'm completely new to AutoCAD.  How might I go about this?

I believe the basic steps would be something like this:

1.  Identify which object to copy from template sheet.

2.  Save that object to memory

3.  Identify object to replace in existing drawing

4.  Copy attributes and get position of existing titleblock

5.  Delete existing titleblock

6. Insert new titleblock and copy in attributes

I've taken the Autocad tutorials, and I've searched for relevant posts on ThroughTheInterface.  Is there someplace else to look which might give a more in-depth example of what I'm trying to accomplish?

Win7 x64 - 16gb ram
i7 3610qm
FirePro M4000
Inventor 2013
ETO 6.1

View 4 Replies View Related

Lightroom :: Swap Objects Between Photos?

Apr 23, 2013

if i took 2 different photos of the same person and one facial expression was better than the other photo can switch the faces in the pictures?

View 4 Replies View Related

Photoshop :: Have All Of Brushes Populate When Using CS5.5 For First Time?

Apr 24, 2013

It seems, by default, Photoshop CS 5.5, has only a limited number of brushes. I want my kindergarten students to have access to all of the brushes available in CS 5.5, so I've had these brushes by way of appending, for each individual student. having all of the brushes populate from the start?

View 4 Replies View Related

Xara :: Auto-populate A Template

Sep 19, 2012

I am using P&GD2013..If I use a template from the designs gallery it will automatically replace photographs and create new pages to match the number of photographs I import. If I make my own template I can't make it do that.I have tried modifying a supplied template but that seems not to work either. All I want to do is to create a template of an A5 landscape page with one centred 7 x 5 photograph and then import forty photographs. Do I really have to drag each one from the bitmap gallery ?

View 5 Replies View Related

3ds Max :: Possible To Save Mesh From Populate System?

Oct 5, 2013

Like the title says is there a way to save a single mesh from the populate feature? Also are there other premade meshes available? Such as beach people etc..

View 6 Replies View Related

3ds Max :: Populate And Backburner Doesn't Work

May 8, 2013

I just noticed that I get a "3dsmax.exe process no response" when I try to render a scene that has populate people in it on backburner

View 1 Replies View Related

3ds Max :: How To Use Custom Skin In Populate Feature

Jun 14, 2013

I have been using the new populate feature. I would like to use custom skins. I have several biped figures that are what I would like to use for textures. I am not sure how the mapping works and you can not just copy the textures over. 
 
What do I have to do to take my texture from my biped skinned character and apply it to the populate character?

View 2 Replies View Related

CorelDRAW X6 :: Swap Files Horizontally And Vertically?

Apr 11, 2012

any gms or script to swap files hor as well as vertically.

For instance, left side circle and right side rectangle if you swap horizontally then left side comes rectangle and right side comes circle.

View 9 Replies View Related

AutoCAD Civil 3D :: Multiple Part Swap

Oct 13, 2009

[ URL]............

One of the problems we face in 2010 is the part labeling issue, where it labels the family name for a part and not the description name. The way to get around this was to do a swap part. Well for me when i lay out a storm network, i create it by pipes only and then swap the parts that i need to. The only flaw about this is that you can only do one swap part at a time.

Well if you go to civl3dreminder blog site there is a fix for that. I actually tried it and it worked. I was actually able to swap pipes and structures at the same time. This routine will definitely come in handy.

View 2 Replies View Related

AutoCAD Civil 3D :: Swap Parts Are Not Working

Oct 26, 2012

Swap parts is not working for my structures. When I swap a structure it becomes unselectable and if I close out the drawing and re-open it the part is gone. I am running C3d 2012 64 it with the latest SP. I've attached the drawing.

View 2 Replies View Related

Photoshop :: Swap Side Of A Closed Path

Jan 22, 2009

Is it possible to swap which side of a closed path - inside or
outside - masks a fill layer?

Let's say you draw a closed path with pen tool and then add a solid color fill layer which will be masked by the path so that the inside of the

path gets the color - what if you want the color on the outside instead,
how do you do it?

View 1 Replies View Related

AutoDesk Smoke :: Swap Transition In 2013?

Apr 28, 2013

There is no custom transition in Smoke 2013.

I try to do so by creating an axis transition and match the contents.

It just matched the whole clip with wrong in and out point.Then I try to swap something with the transition.It said two targets of the same type is required.

Does the Swap Effects work for transitions?

It is pretty simple and smooth in Smoke 2012.

View 2 Replies View Related

GIMP :: Unable To Open Swap File

Aug 4, 2012

Start up Gimp and get an error message as follows:

Unable to open swap file. GIMP has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart GIMP and check the location of the swap directory in your Preferences.

When I check preferences, the path to the swap file is not correct. My path is user to Application to Application Support to Library to Gimp.

View 2 Replies View Related

Photoshop Elements :: How To Swap Faces On Pictures

Apr 29, 2013

I am looking to use two pictures and in one swap the faces as one the boy was looking and the other he wasnt... how do I do that?

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved