Cross section view of 3D model in director

Hello everyone
I would like to know if it is possible to create cross
section views (to define a cutting plane to be able to look inside
the model) of a 3D model using Lingo . If so, can you give some
insight on how to do it?
Thks
xnr

> I would like to know if it is possible to create cross
section views (to
> define a cutting plane to be able to look inside the
model) of a 3D model using
> Lingo.
This might also give you an interesting option:
http://director-online.com/buildArticle.php?id=1104

Similar Messages

  • Cross-section option sometimes missing on 3D PDFs

    I publish 3D PDFs of complex mechanisms for my subscribers. Sometimes Adobe Reader will offer a cross-section option and sometimes not. The 3D PDFx are not made by Acrobat Pro but with an embedded PDF generator inside my mechanical CAD software. I don't make any changes in the way PDFs are generated by the program.
    Any ideas?

    Good questions. - in addition which version of Acrobat is it, and for Windows or Mac?. I tried a few combinations of making single and multiple cross section with face and non-cross section views on a few files in Acrobat 11 on Windows, and could not see any problem.

  • Can Shape model a cross section of swiss cheese or a doughnut?

    Can a GeneralPath or Area model a shape that has holes in the middle?
    Could a GeneralPath model a 2-d cross-section of swiss cheese or a doughnut?
    Do all the points of a GeneralPath need to be contiguous?
    According Ernimril in [this post|http://forums.sun.com/thread.jspa?forumID=5&threadID=612402] , a GeneralPath can have a hole in the middle, as long as the winding rule is set to WIND_EVEN_ODD. This seems to be confirmed by [the explanation of WIND_EVEN_ODD on the documentation for GNU Classpath|http://developer.classpath.org/doc/java/awt/geom/GeneralPath.html] , and [this nice forum post explaining the difference between the two winding rules|http://forums.sun.com/thread.jspa?forumID=54&threadID=781529] . However none of the examples given point to a shape that consecutive but noncontiguous points.

    Thanks for the tips! I've come up with an example that visually demonstrates that this can be done with GeneralPath or Area:
    // ShapeTest1.java
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    class ShapeTest1 extends JComponent
        Area _shape;
        GeneralPath _generalPath;
        ShapeTest1( Dimension d )
            setPreferredSize( d );
            // using Area
            _shape = new Area(
                new Ellipse2D.Double(
                    50, 50, 50, 50
            _shape.subtract(
                new Area(     
                    new Rectangle2D.Double( 60, 60, 20, 20 )
            // using GeneralPath
            _generalPath = new GeneralPath( GeneralPath.WIND_EVEN_ODD );
            _generalPath.append(
                    new Ellipse2D.Double( 150, 150, 100, 100 ), false
            _generalPath.append(
                    new Ellipse2D.Double( 160, 160, 50, 50 ), false
        @Override
        protected void paintComponent( Graphics g )
            super.paintComponent( g );
            Graphics2D g2d = ( Graphics2D )g;
            g2d.setColor( Color.BLACK );
            g2d.draw( _shape );
            g2d.setColor( Color.RED );
            g2d.draw( _generalPath );
        public static void main( String[] args )
            JFrame frame = new JFrame( "ShapeTest.java" );
            frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
            ShapeTest1 shapeTest = new ShapeTest1( new Dimension( 300, 300 ) );
            frame.getContentPane().add( shapeTest );
            frame.setLocation( 100, 100 );
            frame.pack();
            frame.setVisible( true );
    }

  • Cross Sections in 9

    Dear All,
    is it possible to have more then one cross section in a view?
    According to table 9.39 in the PDF Reference there may be an array of cross section dictionaries
    per view.
    Does it suggest that the feature is there but I just do not know how to use it or multiple cross sections are planed for but not implemented yet?
    BTW, there are two entries in cross section dictionary that Acrobat uses but I can not find documentation for: ST and PV.
    The first seems to make half of the model transparent instead of cutting it off.
    Sincerely, Michail

    The 3D annotation type in Acrobat and Adobe Reader only supports one active cross section plane at a time.

  • Sectional view with nontransparent cut surface??

    Hallo,
    I have the following question. I want to creat a sectionel view with a nontransparent cut surface at the sites where material would be cut. Like in a mechanical drawing. Is this possible? I tried to set the opacity of the section plane on 100% but then its only nontransparent from the other side.
    thanks in advance!
    Max

    Do you mean 'capping' the areas where the Cross Section intersects the model, so the appropriate sections appear to be solid where the cut occurs? If so, this is not possible.

  • Re: [SunONE-JATO] Re: How to use a tiled view without a model

    I'm not sure what is different for you now. You still parse the string
    and put it into a data structure. Before the data structure was a
    vector, in JATO its just a model with a "hidden" data structure (a hash
    map).
    MVC only really comes into play when you talk about where your write
    this code, and where the data structure is being stored. So really, JATO
    takes care of half of the MVC'ness of it all (where the data is store).
    You just decide where to be the code to populate the model.
    Make sense?
    Is there something different required of you in JATO in this scenario
    that I am not grasping?
    c
    Hoskins, John D. wrote:
    Thanks for the feedback.
    The problem I was solving involved a single string, which contained
    delimited subsets of information.
    The string looked like
    this:"time|analyst|description|time|analyst|description|..."
    In ND, I parsed it apart into it's components (time vector, analyst vector,
    description vector), populated the repeated.
    With JATO, how would I make a model for something that doesn't have a
    database component like this?
    I'm pretty new to this MVC thing, so bear with me.
    John D. Hoskins
    Telephone & Data Systems
    Application Development & Support
    Voice: 608.664.8263
    Fax: 608.664.8288
    Email: john.hoskins@t...
    -----Original Message-----
    From: Craig V. Conover [mailto:<a href="/group/SunONE-JATO/post?protectID=219212113009229091025149066024064239039098031198039130252055210">craig.conover@s...</a>]
    Sent: 6/26/2002 3.22 PM
    Subject: Re: [SunONE-JATO] Re: How to use a tiled view without a model
    I guess the only thing "weird" (for lack of a better term) about what
    you are doing is that your are populating the model on the "display
    cycle". Typically, the cycle goes like this:
    Request -> populate model -> update data store -> retrieve data to
    populate model -> display data
    some of the above steps are optional but hopefully you get the point I
    am making.
    So what you are doing is:
    Request -> populate model/display data
    If it works for you, then it's not necessarilly wrong. But I would
    probably have my model populated before I forwarded to the target
    (displaying view bean) or at a minimum, in the begin display event of
    the view bean or the tiled view, but not during the iteration of the
    tiled view.
    c
    jhoskins wrote:
    Craig,
    Thanks for the pointers. I ended up doing something else. I set the
    models setSize() method to set the max size, and as the tiles fields
    iterated, populated the value from some vectors I had the data in
    already. Is this solution fraught with peril and will ultimately fail,
    or should I try your way?
    John
    --- Craig V. Conover wrote:
    John,
    Check out the docs for DefaultModel. There is an appendRow() method.
    So get your tiledview's primary model (the tiledview's primary model
    should be set to use an instance of DefaultModel), model.appendRow(),
    then model.setValue("fieldname", value) for each value.
    Rinse, repeat as needed.
    c
    jhoskins wrote:
    I would like to use a tiled view, but populate the fields manually.
    Any pointers about where I can set the size of the tiled view? I tried
    setMaxDisplayTiles() in the beginDisplay, but it won't get down and
    generate the rows.
    John Hoskins
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

    Craig,
    Thanks for the pointers. I ended up doing something else. I set the
    models setSize() method to set the max size, and as the tiles fields
    iterated, populated the value from some vectors I had the data in
    already. Is this solution fraught with peril and will ultimately fail,
    or should I try your way?
    John
    --- "Craig V. Conover" wrote:
    John,
    Check out the docs for DefaultModel. There is an appendRow() method.
    So get your tiledview's primary model (the tiledview's primary model
    should be set to use an instance of DefaultModel), model.appendRow(),
    then model.setValue("fieldname", value) for each value.
    Rinse, repeat as needed.
    c
    jhoskins wrote:
    I would like to use a tiled view, but populate the fields manually.
    Any pointers about where I can set the size of the tiled view? I tried
    setMaxDisplayTiles() in the beginDisplay, but it won't get down and
    generate the rows.
    John Hoskins
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

  • How to add an index to a materialized view in Data Modeler 3.3

    Hello everyone,
    I'm looking for a how-to to add an index to a materialized view in Data Modeler 3.3.0.747, as I coudn't find a way to do it so far.
    I looked here:
    Relational Model
    Physical Model
    Oracle 11g
    Materialized Views
    "my_mv_name"
    "INDEXES" IS NOT HERE IN THE TREE
    "Tables" does not include it either
    Thank you & Best regards,
    Blama

    Hi David,
    thanks a lot. I did so and it worked, but I found a minor bug while doing so:
    I marked the table as "Implement as Materialized View" and went to File->Export->DDL (for Oracle 11g).
    The generated code (I checked all options in "Drop Selection") includes a row:
    DROP MATERIALIZED VIEW mv_mymatview CASCADE CONSTRAINTS ;
    which produces a syntax error.
    Best regards,
    Blama

  • How to make Geological Cross Sections in Adobe Illustrator?

    I have been tasked with producing a geological cross section in Adobe Illustrator. It is a lengthy process, as I am new to the software. I never learned it in my GIS studies. I know that there is plenty of GIS software out there to produce x sections automatically (we have Petrel for example), but they want it done in Adobe Illustrator as it's not a data driven x section.
    Does anyone have any familiarity with doing such a thing? I am having to basically use the cutting tool to divide up a box into the sedimentary layers. Then I fill the cut shapes with the correct colour. Complications arise, however:
    I have to show wavy lines between some sedimentary layers to indicate a gap, or layers which aren't shown. I am using the distortion tool to automatically produce the wavy line, which means I need to:
    a. copy/paste the original area
    b. change the appearance so there is no fill, delete all strokes except the one which will turn into the wavy line, apply distortion
    c. copy/paste the original area
    d. change the appearance so there is no fill, delete the stroke that will turn into the wavy line, change stroke to black line
    This means I have 3 elements whenever there is a part of the cross section showing a wavy line:
    the area which has a fill but no stroke,
    the wavy line (derived from the area by deleting the fill and strokes which aren't wavy),
    the rest of the stroke around the area.
    Does anyone know of a faster way to do such a thing?
    I wish I could just draw a shape using some sort of line tool and AI would detect when there is a closed off area so I could then select a colour fill.
    Another problem is the cutting tool does not make it easy to produce matching curves:
    In this image you can see that there is a wrinkle across many sedimentary layers, but my cutting skills in Illustrator mean that the lines do not follow a nice uniform shape. Of course this is the case in the real world as well, although at the moment the image has a bit too much of a 'hand drawn' look to it. Part of the problem is that the cutting tool, usually helpfully, smooths out the cut line as one goes (digitising a smooth curve with a mouse is impossible!). Sometimes this smoothing has undesired effects. It would be good to know if I can apply an offset to another line when cutting.
    Is it right that I should be using the cutting tool as my primary way of setting up a x section, anyway?
    I'm thinking a better way to do all of this would be to somehow have a tool that enables me to select vertices across multiple lines in sedimentary layers, then drag them up or down. This would then apply the same amount of curve across the layers.

    Once you've set up your Pattern Swatches, this should take only a few minutes:
    Draw your paths with a minimum of anchorPoints. Click (mousedown, mouseup) to place a corner point. ClickDrag (mousedown, drag, mouseup) to place a smooth point.
    The top and bottom paths are now identical. When used to define a Blend, the program interpolates the paths between. The anchorPoints of the two original "key" paths of the Blend can still be selected and manipulated while the Blend is live; and the interpolated steps update accordingly.
    t
    There are several Libraries of pre-built Pattern Swatches you can load. Or you can create your own if none of the provided ones are what you want. The help files will show you the basics of creating a Pattern Swatch. Create one for each different pattern you want in the strata. Select the rectangle and the paths. Get the Live Paint Tool. Set the current Fill to one of the Patterns. Click between two of the strata lines. The selected objects will be converted to a so-called LivePaint Group, and you can proceed to apply other Pattern Swatches to the various areas.
    The Shape Builder tool can then be used to trim away the outboard portions of the strata lines, back to where they intersect the rectangle.
    JET
    Strata

  • Creating a view and use the view in a model

    Hi All,
    I am new to OBIEE and i have a requirement that i have two fields to be added to a subject area. Since we can't add queries directly to a model, i have to create a view and then put the query in it and then use the view in that model.
    I couldn't understand this much, if anybody could help me explaining in detail about the views and adding a query in it?
    Thanks
    Gohan

    Hi,
    Please refer the screen short below link
    http://imgur.com/b9sXS
    Right click any of one physial table(RPD physical layer) -> Select Properties -> from the properties windows choose 'Select' as Table type ->
    Please enable feature 'CREATE_VIEW_SUPPORTED' view just go to 'Features' tab and from the available option select 'CREATE_VIEW_SUPPORTED' is checked or not. If it is not checked then check the option.
    can you explain your current model and scenario?
    for example to you can use to fetch two fields from Subqueries,all trypes of joins(inner,left outer,right outer etc..,) its upto you case
    e.x:fetching two tables columns mapping subquery:
    SELECT column1, column2 FROM table1 WHERE column1 IN (SELECT column1 FROM table1
    INTERSECT SELECT column1 FROM table2 )
    SELECT column1, column2 FROM table1,table2 WHERE table1.column1 = table2.column1
    Alternative there is feature call "mulitple subject area" method will work (Union,Union all etc..,)
    Thanks
    Deva
    Edited by: Devarasu on Jun 6, 2012 4:40 PM

  • How to Save Section to be a dxf document? why Save Section View button is not on?

    dear ..
    i use adobe Reader xi version 11.0.0 , when i want to use Save Section View button , i fine this button is not on? 
    my question is :
                             how to Save Section to be a dxf document? why Save Section View button is not on?
    hope to hear your reply !thanks!
    best regards!
    charles
    e-mail: [removed]

    Hi Sandesh,
    Please provide the complete code from print & save button.
    Thanks & Regards,
    Balamurugan G

  • Views in Dimensional Modelling

    Hi
    I need info on roles of views in dimensional modelling.,I have searched for this but no luck,,
    Can anyone help me in this regard?

    Are you looking to create views on Dimension model structure?
    Yes. Dimension model structure are oracle tables. You can create view/synonym etc.
    I hope this help.

  • Can edges cross in the topological data model?

    I'm evaluating Oracle Spatial, and having read through the topology documentation, it appears that edges cannot cross in the Oracle Spatial model. In other words, it looks like edges that 'cross' must actually have a shared node at the point or points of intersection. Is that correct?

    And in fact what that means is that edges cannot cross. Edges may touch at a common node but cannot cross another or themselves.

  • Objects are not referenced in cube data source view. Large model.

    Looking at large model. 100+ measure groups, 200+ dimensions, one cube. Deployed to multiple customers in production as a part of custom developed software.
    in data tools 2010 I'm looking at the cube on sql 2008, sql 2008 R2 (EE, DE).
    In the cube data source diagram we observe 50+ objects that do not have any links to them or from them.
    1)
    Some of these I was unable to find in DMV's of the cube at all, it turns out they are present in the Data source that is in Data Source Views section.
    How did these end/could end up in the cube data source model? they are not available in dimension usage window at all.
    2) Others do not have any links from them or to them in cube’s data source diagram, however the dimension usage clearly shows these objects are part of relationships 
    both regular and many to many depending on the object in question.
    We are trying to identify what objects we can ‘trim’ from the model. I’m not sure what am I looking at in this case: data tools have a trouble interpreting diagram for 200+ dimensions and
    100+ measure groups (it is a large existing model) and this artifact should not be used to decide what in dimensions is obsolete and can be decommissioned.
    We are looking at cube that has over 40 NxM just to one fact not counting regular relationships.
    Am I looking at a feature or maybe an issue with the model itself that somehow has developed in the particular cube.
    It is not something I came across before.
    thanks

    Hi,
    According to your description, you are designing a large SQL Server Analysis Services cube, the problem is that you are unable view the relationship in the data source
    view diagram, right?
    In your description, you said that you can see the relationships in Dimension Usage window. In your scenario, can you see the relationship under the Tables pane when expanding
    a table's Relationships folder?
    General, the relationships will be defined automatic if the relationships were defined in your data source of the cube. And the dimension relationships between cube dimensions
    and measure groups in the cube are defined manually in Dimension Usage. In your scenario, you can define relationship manually in the data source view, please refer to the link below to see the details.
    http://technet.microsoft.com/en-us/library/ms178448.aspx
    Regards,
    Charlie Liao
    TechNet Community Support

  • How do I set a unique texture for each cloned 3D model in Director?

    Hi,
    I am using a 3D world built from 3Ds Max, it contains 2 boxes, In Director I have set the boxes to move along a path and when out of camera shot the boxes are reset along the Z axis and a new texture if applied (generated via a text member), so far so good.
    Now if the user clicks a button I would like to clone the boxes and have each box display its own texture from its own text member. At the moment the cloned boxed all use the texture from the last textured box, I assume this is an inheritance issue, but I do not know how to make each texture unique the its box.
    Any ideas?
    Thanks in advance!
    Sherv.

    Hello,
    Im trying to make a number of boxes in a 3D world to move along the Z axis with a unique texture. The start just outside of the cameras field of view, move through the camera and when out of sight their position is moved back to the start with a new texture and the process repeats giving the  illusion of endless boxes. The problem I am having is with the unique textures, I would like to reuse the shaders but without resetting the world. Currently I get the following  message on line “ shad1 = w.newShader("shad1",#standard) “ :
    cid:[email protected]
    Below are snippets of the code for texturing the objects :
      w = member(MyCameraSetup)
      shad1 = w.newShader("shad1",#standard)
      case ANPRcountry of
        "UK" : tex1 = w.newTexture("tex1",#fromCastMember,member("ANPRtext"))
        "Saudi" : tex1 = w.newTexture("tex1",#fromCastMember,member("ANPRSaudi"))
      end case
      shad1.texture = tex1
      shad2 = w.newShader("shad2",#standard)
      case ANPRcountry of
        "UK" : tex2 = w.newTexture("tex2",#fromCastMember,member("ANPRtext2"))
        "Saudi" : tex2 = w.newTexture("tex2",#fromCastMember,member("ANPRSaudi2"))
      end case
      shad2.texture = tex2
      member(w).model(1).shader.texture = tex1
      w.model(1).shader = w.shader("shad1")
      member(w).texture("tex1").quality = #high
      member(w).model(1).shader.transparent = False
      w.shader("shad1").ambient = rgb(255,255,255)
      w.shader("shad1").diffuse = rgb(255,255,255)
      w.shader("shad1").emissive = rgb(0,0,0)
      w.shader("shad1").specular = rgb(0,0,0)
      -- setup the texture for far lane
      member(w).model(5).shader.texture = tex2
      w.model(2).shader = w.shader("shad2")
      member(w).texture("tex2").quality = #high
      member(w).model(5).shader.transparent = False
      w.shader("shad2").ambient = rgb(255,255,255)
      w.shader("shad2").diffuse = rgb(255,255,255)
      w.shader("shad2").emissive = rgb(0,0,0)
      w.shader("shad2").specular = rgb(0,0,0)
    Any help you may provide will be gratefully received!
    Many thanks.
    Vector, the latest generation in ANPR camera technology is coming soon
    Solutions to improve roads, journeys and communities
    Sherwin Wallace
    Research & Development Engineer
    Vysionics ITS Ltd
    Fishponds Close, Wokingham, Berkshire  RG41 2QA
    T:  0118 979 2077
    F:  0118 977 4734
    M: 07880554879
    [email protected]<mailto:[email protected]>
    http://www.vysionics.com<http://www.vysionics.com/>
    cid:[email protected]
    This email message is confidential and for use by the addressee only. If the message is received by anyone other than the addressee, please return the message to the sender by replying to it and then delete the message from your computer. Internet emails are not necessarily secure. Vysionics ITS Ltd does not accept responsibility for changes made to this message after it was sent.

  • Section Views in 3d

    In acrobat 3d you can take section cuts, but then when you send the pdf to someone that only has Reader 8.1.1, they don't have the section icon. Wonder what I'm missing; there isn't much point in being able to take a section only in the full version, the whole point of it all is to communicate a design to someone that only has Reader. Normally the person with the full version also has Catia (or other), and he doesn't need acrobat to look at his own model.
    It doesn't seem to make any difference what view settings are active when I save the pdf, it opens with a default type view.

    First of all, this is an Acrobat forum. You would probably need to be using Acrobat to do that. It sounds like you're trying to turn functionality on for the free Adobe Reader application using your product rather than Acrobat. You won't find that answer here. I doubt you find it anywhere. I can't imagine Adobe would give you that answer.

Maybe you are looking for

  • Microsoft exchange not syncing with iphone

    I ran a mavericks update today and now my microsoft exchange on mac email will not sync up with phone.

  • Photoshop Elements 10 option-click issue

    New install of Lion Server on a Mac Mini.  It appears that the option-click key stroke to select a area of a photo to clone is not working.  I get the error below on Elemens 9 and 10. Could not use the clone stamp tool because the area to clone has n

  • Beats audio program not work

    hi i have a HP Pavilion dv6-6c20ed Entertainment Notebook it a very nice thing but i have a question the beat program dos not work i have a beats headset but if i want to trun the bass to high its not work can you please help me?

  • ADF Regions - Embedding region pagedef & Page load

    Hi, I'm working with regions in JDev 10.1.3.2. The problem I'm having is this: I have a page that uses a region with its own pagedef. So, I added a <page> element in the parent page's pagedef referencing the pagedef of the region and set the 'value'

  • Having problems with stock broking software that c...

    Hi, I run an application from my stock broker which allows me to see real time prices, execute orders and retrieve historical data for financial instruments. My problem is that the historical data retrieval which is obtained from a server located in