Textures in 3d Toolkit?

OK,
I imported an iges into 3d toolkit, however the associated jpg image didn't show up for the texture.
I even tried dragging one of the standard textures 'beach' onto the model, but it still didn't display. (Just changed the colour)
Any ideas what I am doing wrong?
ps.. I noticed a little exclamation mark in the bottom RH corner

What does it say to the right of the exlamation point? Does it indicate you're using DIrectX 8 or 9? I don't know about dragging textures onto the model here. I always have dragged materials onto a model. (My knowledge of this is somewhat limited, but I've had good luck with applying and editing materials on the models). Make sure you're using the latest drivers for your card. I'm running a fairly wimpy ThinkPad at the moment and if I choose the chrome material it reflects the beach just fine in the Toolkit on an .igs model.

Similar Messages

  • Tetures not showing

    Making some good progress but stuck again.
    I Exported my model as DXF from CAD Software,convert to PDF,and when applying texture in 3d toolkit the object color changes,but texture not visible.
    Display....materials....show textures is selected.[Default Mat. De-selected]
    Object properties....material properties....maps, texture is present.
    Any thoughts on this are apreciated.
    CV

    Hi all,
    I have read a number of messages now that are asking the same question about applying textures and materials to imported files. The one thing I have noticed is that
    Adobe have not answered the question as too whether this process is actually possible or not?
    The reason Im asking this question is because I havent seen in any of the tutorials or examples by Adobe, files that have been imported, such as the aeroplane under carriage system and the turbine engine as well as many others, with a texture or material present.
    I have had the same experience with the toolkit applying the textures or materials to primitives that have been created but nothing imported.
    I have read that applying materials or textures to animation will be lost when converting to PDF format, so this is probably why Adobe has not resolved the issues with adding it to files in the toolkit. I guessing there would be little point, this is fair enough.
    However if that is the reason, is it possible to add materials and textures to static images and convert them successfully?
    I do not mean to come across or sound displeased with this product, it is a fantastic piece of software that I hope to use a lot in my line of work.
    I would just like to resolve this particular issue as it would appear so many other users are suffering too.
    Thank you
    Paul Garbett

  • Acrobat 3D Toolkit - texture & color issue - just light gray color

    hi there,
    when I open a 3D model in acrobat 3D toolkit, the different textures have all the same color R:192 G:192 B:192. Sort of light gray within the whole model ...
    If I open an other model and drag it into the one already opened, then the texture and colors appear normally ...
    Anyone else had this problem??
    Thanks
    Romy

    One think I want to talk about, the battery life.
    It's write somewhere that the 6 Cell last like 12 hours or so. Well, if you use your computer like if it was connected in the electric outlet, you will get around 3h30 of battery life. That's with the screen at 100% and no option enable to save on battery. So I would say it's pretty good.
    I like real life number. When I buy a laptop I expect performance for a real life usage, I never plan to use my screen at 10% of brightness with night vision googles in my face No, I prefer to work with a bright screen. 
    I will continue to post data to let people know what they can expect from this laptop in a real life usage. I thought most people was buying Thinkpad for business needs. Personnally I don't know any business man that run benchmark on their computer.
    For those who have a pending order, let me know if you have any questions.
    ThinkPad X220, I7 2620M, 8GB RAM, Intel 320 160GB SSD, IPS screen, USB 3.0, Bluethoot, Cam, Win 7 pro 64, BIOS: 1.17, Model: 4286-CTO, Fabrication date: 07/11

  • Loss of image texture from capture stage when moving to 3D toolkit

    Basic pdf screen capture from Gocad works well with image textures preserved, but I need to rework the model tree in Toolkit. When the model is transferred to Toolkit for this process all image textures are lost - is there any way to preserve these? Any advice would be appreciated
    with thanks
    Geosurfer

    Hi William,
    Appreciate your reply. Have since found that when I right click to bring model into Toolkit,a small piece of text appears in the top left corner saying "Texture - Off". You'd think I would have noticed that before. Have managed to find the option that turns texture on and this is successfully preserved in the final pdf.
    Just a short comment - I surmise that your major market is industrial design and medicine?, so other areas are not of much concern. However, the use of 3D is exploding amongst the geological/exploration community (esp. combined with Google Earth). With this in mind, the advancements we'd like to see are (i) the ability to order the model tree into any combination of elements (to reflect standard geological map legends ordered from oldest units to youngest) (ii) greater memory efficiency as many geol models have huge numbers of triangles which causes Adobe to crash during capture (iii) some kind of export capacity (to dxf?). Also if there was some way of manually searching for a program to capture from (and "forcing" it recognise this program), as Adobe sometimes "loses contact" with programs it previously recognized.
    Once again thanks for you reply, and compliments on a very powerful product.
     

  • Texturing AutoCAD files in Adobe 3D Toolkit

    When importing a .dwg file saved in AutoCAD 2004 format into Adobe 3D Toolkit, I find that the textures which were added in AutoCAD are no longer present when viewed with the 3D Toolkit software.
    Can anybody tell me how either....
    1. ....How I can import a texture onto the drawing using the 3D toolkit
    or
    2 .....if settings can be changed so that when the AutoCAD file is imported into Adobe 3D Toolkit the textures are shown as they are in AutoCAD.
    Many Thanks

    I'm not sure about how to do this in Toolkit. The long method is that you can add them back with Javascript. Here's some info that I posted elsewhere...
    =====
    In order to map the images, they must be attached as a 3D resource. (There is a free plugin for this; search the forum for "Attach3DResource.api"). Once the images are attached, you can use the 3D Javascript API to map them to the meshes you desire.
    For one doc, I attached 25 images in this manner. I then used the script below to create a bunch of empty meshes, and then apply the images to said meshes.
    Hope this helps!
    //3D javascript ========================================
    //create 25 procedural meshes ======
    var leftEdge = -180;
    var horizontalOffset = leftEdge;
    var verticalOffset = 0;
    var myMesh = new Array();
    var myVector = new Array();
    for ( i=0; i<25; i++ ) { myMesh[i] = scene.createSquareMesh(64, 48, "myMesh" + i); myVector[i] = new Vector3( horizontalOffset, verticalOffset, 0 ); myMesh[i].transform.translateInPlace(myVector[i]); horizontalOffset += 74; if ( horizontalOffset > 180 )
    horizontalOffset = leftEdge;
    verticalOffset += 58;
    //create image array and resource objs ============
    var myImageResources = new Array();
    var myImageFiles = new Array("8d91.jpg",
    "ad2e.jpg",
    "barnpond.jpg",
    "Beach01.jpg",
    "Beach04.jpg",
    "Beach05.jpg",
    "Beach06.jpg",
    "Beach13.jpg",
    "bike trailer.jpg",
    "cobra.jpg",
    "cr80xr200.jpg",
    "craigs_place.jpg",
    "Dandrea.jpg",
    "dirtbike.jpg",
    "e027.jpg",
    "f5b5.jpg",
    "f613.jpg",
    "halfdome.jpg",
    "Iceberg.jpg",
    "island.jpg",
    "kx100_gb.jpg",
    "maui_horanhero.jpg",
    "norcal_ocean.jpg",
    "sierraLake.jpg",
    "Smokey Light.jpg",
    "test.txt");
    //create resource objs
    for ( i=0; i<25; i++ ) { myImageResources[i] = new Resource("pdf://" + myImageFiles[i]); }
    //load images on meshes with handler ============
    var myImageObjs = new Array();
    var myImageMats = new Array();
    myRenderer = new RenderEventHandler();
    myRenderer.onEvent = function(renderEvent)
    for ( i=0; i<25; i++ ) { //create image from resource myImageObjs[i] = new Image(myImageResources[i]); console.println("Image = " + i);
    //add image to model
    myImageMats[i] = myMesh[i].material;
    myImageMats[i].diffuseTexture.setImage(myImageObjs[i]);
    //remove handler
    runtime.removeEventHandler(myRenderer);
    runtime.addEventHandler(myRenderer);
    //cause a recalculation of the scenegraph.
    scene.update();
    console.println("Call scene.update()");
    console.println("Created 25 Square meshes: (64, 48, 'myMeshN')");

  • Solid texture synthesis (from 2D to 3D)?

    I read a Ph.D thesis from MIT. The author constructed a kind of method to do the solid texture synthesis from 2D image of particle sections to generate 3D image of particles. I think he used C++. I am not sure whether I do or program using Labview? if it is possible, can anyone tell me the appropiate way? what about the Vison+VC++?
    Any ideas?
    Thanks a lot in advance.

    I cant access the thesis, however, do you already have the algorithms you want to apply in your 2D to 3D synthesis. I would imagine you would need some sort of visualization engine, and I am not sure whether LabVIEW has that capability.
    For example, you when you import a VRML file into LV, it strips out the texture properties of the material in the 3D picture control toolkit.
    You can apply a texture on a 3D object by wrapping a jpeg around the object, but that is very primitive to what you are trying to accomplish
    http://zone.ni.com/reference/en-XX/help/371361E-01/lvhowto/3d_apply_texture/
    http://zone.ni.com/reference/en-XX/help/371361E-01/lvpict/texture/
    National Instruments
    Applications Engineer

  • Windows Update 956391 causes texture anomalies upon U3D creation

    This message is to make others aware of a texture problem that occurs when U3D files are created in the toolkit (and subsequently imported into Acrobat 3D) due to an automatic update of Windows Active X Renderer(956391).
    I am working on a project that involves the batch conversion of OBJ files (with texture) to U3D files using the Adobe 3D Toolkit. We then use the U3D's to make distributeable PDF files. After a typical automatic Windows Update, the U3D files showed texture anomalies when imported to the Acrobat 3D. Uninstalling the Windows update solved the problem (and upon contacting Microsoft - they agreed with the uninstall). Note that this is only upon creation of the U3D files (PDFS) and is reflected in the quality of the final PDF.
    Hope this might help others out there!

    Great post. Thanks, Angelia

  • New materials in 3D Toolkit?

    Hi,
    Anyone know where to find new materials for the 3D toolkit? How does one create a new material? I need a realistic looking stainless steel and something that looks like nickel plated metal. Some good brass would be nice, too. None of these are included in the materials (.rhm files) that ship with AC3D.
    Thanks,
    JEff

    The materials listed in the tab in 3D toolkit are in a folder under the location where you installed Acrobat 3D.
    By default the path is:
    C:\Program Files\Adobe\Acrobat 7.0\Acrobat\3D Toolkit\Materials\
    To create a new preset material I usually just copy and paste an existing one and then rename it to what I want it to be.
    Then when you select it, the main screen will display a sphere textured with that material. In the "Scene Tree" panel expand the Materials folder. This will list the internal materials to the .rhm file. Rename the material listed there to what you want and then double click on it. That will open the material properties dialog which allows you to change all of its properties.
    Grayson

  • Texture problems with Acrobat 3D

    Hello all. I work with visualising buildings. I came across Acrobat 3D, and sure I want to implement my models into PDF.
    My workflow is as follows: Model in ArchiCAD -> exporting to .3ds containing texture data -> making PDF with Acrobat 3d from the .3ds file.
    Almost everything works like expected. My problem is that the texture size on my walls seems to be fixed, and appears way too big than it should.
    I've tried to reduce the image size of the bitmap texture too, but then the texture just gets dragged out to the "same" size as before.
    I'm really stuck on this case, and I don't know if it's an issue with the 3ds exporter in ArchiCAD or an issue with Acrobat3D.
    Anybody solved this problem before?
    Is there any parameter somewhere telling Acrobat 3D to lock textures with "wrong" size?
    Thanks in advance.
    - Jon

    It sounds like you need to change the tiling value for the texture.
    This is how to do it.
    Open your .3DS model file in 3D Toolkit.
    Double click the wall that you want to modify the material for.
    Under the "Materials" tab, double click on the material in the list.
    Under the "Maps" tab, select the "Diffuse Texture" icon.
    Change the value of "Scale U" and "Scale V" to some bigger integer value such as 2, 3, 4.
    Click OK
    Click OK
    Grayson

  • Transparent textures in 3D-SubScene

    Hi!
    I've got a 3D scene with shapes having semi-transparent textures (e.g. texture with alpha gradient to simulate reflections).
    When it is shown using a 'normal' Scene, everything works fine, but as soon as I change to a SubScene with black background (subScene.fill(Colors.BLACK)), transparent pixels seem to be blended to white instead of black.
    Correct with Scene: http://i39.tinypic.com/2isuq35.png
    Incorrect with SubScene: http://i40.tinypic.com/20aayvp.png
    As you can see in the screenshots, it seems that only pixels that are not fully transparent are affected.
    System information:
    Java(TM) SE Runtime Environment (build 1.8.0-ea-b109)
    Java HotSpot(TM) 64-Bit Server VM (build 25.0-b51, mixed mode)
    Windows 7 (x64)
    GPU: NVIDIA Quadro 600
    Hardware acceleration: DirectX / Direct3D
    Is this a bug, missing feature or do I have to do something special to make this work?
    Thanks,
      Mario

    What does it say to the right of the exlamation point? Does it indicate you're using DIrectX 8 or 9? I don't know about dragging textures onto the model here. I always have dragged materials onto a model. (My knowledge of this is somewhat limited, but I've had good luck with applying and editing materials on the models). Make sure you're using the latest drivers for your card. I'm running a fairly wimpy ThinkPad at the moment and if I choose the chrome material it reflects the beach just fine in the Toolkit on an .igs model.

  • Textures and file formats

    Now I have a silly questions,
    I'm testing the try out, to make sure this is the software I want to publish my models with. I would like to create a 3D PDF from a textured 3D model that I created in Maya.
    The DXF exported from Maya show an error " there is no displayable object".
    I exported the model in obj ans in wrl, but the paths to the textured are apperently not loaded in Acrobat3D.
    Do I really have to reassign each texture to its object in the 3D Toolkit. Is there another file format that I can use in which the paths to the textures are saved?
    I have 3dsMax, so the only solution I found is to go from Maya to 3ds and then export an .ase . But it seems quite ridiculous.
    I figure there is a way to do this directly. I am sorry for the stupidity of my question and thanks for your help,
    Steph

    I was told that, if you're using an OpenGL graphics card in OpenGL mode, a 3D capture from inside your application to the 3D Toolkit would capture both model and textures but I've yet to try it myself. Hope this helps. Iam

  • 3D model plus material from 3Ds Max or Adobe 3D Toolkit import to Acrobat 3D

    Hello Forum
    We have been looking through the forum but could not find the topic yet. Hence I am writing to maybe find an answer to our little issue. We are coming from the corrugated printing industry and attempt to provide our customers with additional 3D models in PDF for approval.
    So far we have turned the keyline (aka folding pattern) into an accurate 3D model using 3Ds Max. Placing the artwork (logos, barcodes, text etc.) into the right position works as well in 3Ds Max. However when exporting from 3Ds Max and then 'Creating PDF from file' in Acrobat 3D, we lose the 'material', i.e. the artwork and just succeed in importing the 3D model. We have tried all format exports from 3Ds Max but cannot import the artwork. Do you have any idea?
    Alternatively, we have tried to use Adobe 3D toolkit to create the 3D model but are not able to place the 'material' into the exact position we require in the 3D model. Maybe there is a better way?
    Thank you for any help or suggestions.
    Ab.

    Hi Abraham,
    A few short answers to your specific Max questions (better late than never, I hope):
    1. Is there a plug-in or special process to turn a 2D keyline (folding pattern) into a 3D model using 3Ds Max?
    Sounds like this something that could be done using a basic spline. If you are new to 3DS Max, try looking into splines, as well as Compound Objects>Loft. The loft tool utilizes two elements; a loft path, usually just a line of some fashion, and the shape of loft, which can be any 2d shape drawin in max. Search for Loft object under Max help.
    2. What would be the best way to map the artwork belonging to the keyline onto the 3D model?
    Mapping can be complex, however, there are some nice techniques to use given the time taken to learn. Baking textures would be my suggestion to you; a baked texture is essentially a 2d redering of your model which is created through Rendering>Render to Texture. This will render out a 2d baked map of your object, including lighting an environmental elements. Save as a.tga, and you can then import you 2d baked texture into other design progs and use it as a texture mapping template; allowing you to add design elements, details textures, etc. to specific areas of your model's texture. Once finished working with the texture design, save as a .tga, then re-import your modified .tga into Max via Utilities Tab>Asset Browser, apply your modified .tga to a material sample in the Material Editor, and apply to your model.
    That's the basic procedure. For details, search 3DS Max Help for "Render to Texture" and "Backed Maps".
    Hope that points you in the right direction,
    ~Chipley

  • Report generation toolkit and signal express user step : problem of closing reference in "Stop" event

    Hi all,
    I'm trying to make a package of Vis to easily make Excel reports with Signal Express. I'm working on LabVIEW 8.2.1.
    I'm using the report generation toolkit, so I build a .llb from my project which contains all the hierarchy of my steps, but also the hierarchy of dynamic VIs called.
    I have made some steps, like "Open Workbook", "Write Data", etc.
    My steps run well, excepts one step : "Close Workbook".
    If my "Close Workbook" step is firing on "Run" Signal Express event, I have no error, so my reference is properly closed.
    But if my "Close Workbook" step is firing on "Stop" Signal Express event, I have an error "1", from "Generate Report Objectrepository.vi".
    I feel that I'm trying to use a reference which has been killed in the "Stop" step...
    I would like to know what exactly do Signal Express on "Stop" event and why my close function does'nt run well.
    Thanks,
    Callahan

    Hi Callahan,
    SignalExpress (SE for short) does the following on the Stop event:
    1. Takes the list of parameters that SE found on your VI's connector pane, and sets the values that the user set from the "Run LabVIEW VI" configuration page, if any.
    2. Then tells the VI that SE is running the Stop event by setting the Enum found on your VI's front panel. This in turn should produce some boolean values telling your VI to execute the Stop case.
    3. The VI is then run, with those values and states.
    4. SE checks to see if any errors where returned.
    5. Since this is the Stop event, SE releases the reference to the VI which it possesses.
    Questions for you would be, is the reference to your Workbook linked to a control on your connector pane, or held in a uninitialized Shift Register. If it's held in a Shift Register, SE would not be aware of it, and would not be able to affect that reference.
    Hope that helps. Feel free to post your LLB if it doesn't.
    Phil

  • Report Generation Toolkit Error (undefined erro)

    Does anybody know what error -214 682 7864 (0x800A01A8) means when coming from the Report Generation Toolkit.
    I have an app which has been happily ticking over for several weeks, and then this error was generated when attempting to write a table to a spreadsheet. The error was generated all the way down in NIReportGenerationToolkit.lvlib:Excel_Get_range.vi (this is the ActiveX code).
    Any ideas? 
    nrp
    CLA

    nrp wrote:
    I have an app which has been happily ticking over for several weeks, and then this error was generated when attempting to write a table to a spreadsheet.
    Was it the first time you attempted to write the table to that spreadsheet?
    Maybe the error is due to the spreadsheet grown oversize than its limit so that it cant accomodate the table anymore.
    What is the version of MS Office you are using? I think Office 2003 can go only upto 1024 columns...
    - Partha
    LabVIEW - Wires that catch bugs!

  • Report Generation Toolkit producing error -2147417842, "The application called an interface that was marshalled for a different thread."

    Hi everybody,
    I've got an application that logs data to an Excel spreadsheet using the Report Generation Toolkit.  My VI's have worked fine in the past using Excel XP, but since I've upgraded to Excel 2007, I am getting COM errors like this one:
    "Error -2147417842 occurred at The application called an interface that was marshalled for a different thread. in Excel_Insert_Text.vi"  That is the exact wording, even with the weird punctuation and capitalization.
    The first occurrence of the error is not determinate.  Sometimes, up to 10 logging sessions, involving a new .xls file, can occur before this error pops up.  Once this error occurs, I must quit LabVIEW to resolve it.  If I try to do anything with Excel, I always get this error, although sometimes it comes out of different source VIs.  Excel_Open.vi is another.
    These logging VIs have worked just fine until upgrading to Excel 2007.  I checked, and I was using a really old version of the Report Generation Toolkit, v1.0.1.  I read the documentation and had a big sigh of relief when I realized I needed to upgraded to v1.1.2 to get Excel 2007 support.  However, even after upgrading, I'm still getting the same errors.  I'm using LabVIEW 8.0.1, and I'm also building these VIs into an application.   The error occurs both in the LabVIEW IDE and in the built application.  Does anybody out there have any idea what I can do to fix this?  I googled a little, and discovered this is a COM error, but I can't find any references to the Report Generation Toolkit specifically.
    Thanks,
    Phil
    Solved!
    Go to Solution.

    Hi Christian,
    I do not see that exact option listed, do you mean "user interface"?  I recognize the "Run in UI Thread" option, it's on the Call Library Function Node.
    I checked, and my top-level VI has "same as caller" set, and I believe all my VIs are set to "same as caller".  Are you suggesting I change my top-level VI preferred execution environment to "user interface", or just the logging sub-VIs that use the Report Generation Toolkit?
    Thanks,
    Phil
    Attachments:
    VI_properties.png ‏15 KB

Maybe you are looking for

  • Transfer Playlists & Music from old Ipod to new one - Shared ITunes

    I have just bought a new ipod nano and want to transfer the music and playlists from my old 2nd generation ipod over. Unfortunately I share a computer and the library in ITunes isn't mine. I can connect both old and new ipods at the same time but obv

  • WDDynamicRFCExecuteException: Error connecting using JCO.Client: null

    Hi This is a common problem,I have seen many threads , but following them did not solve my problem. I have the JCOs tested successful from WD Admin. When I create a sample WDJ application with RFC model and deploy it to the server, I get Exception:co

  • Acrobat XI: Text in Formular einfügen

    Hallo Community! Ich erstelle per Automation diverse Felder in einem PDF-Formular [z.B. (AFormAut.App).Add("City", "text", 0, 100, 590, 345, 615)]. Die PDF-Datei wurde ursprünglich mit Word erstellt und hat somit auch einen „fixen" Formulartext (z.B.

  • How do I reload the plug-In program?

    I accidently clicked on never instead of always and now I can no longer view you Tube.  I want to reload of do what ever it takes to reset the plug ins.

  • SQL Hard Parsing

    How can I program a PL/SQL procedure/function to return a cursor (recordset) to JDBC calling program AND have Oracle NOT reparse the select statement in the package? I presently return a ref cursor which works, but am dismayed that the statement is h