How do i set the size of 3d picture control

dear sir,
            I have attached my vi.I have one doubt  ie I have used translate object. vi in my vi to move my picture according to the value set by the y position.This y position indicates depth my object.this is sample object  insteat of i am going to update my underwater vehicle.
What my problem is when i chnage the y value beyond 200 I can not see my picture.so  how do i set the size of the 3d picture control size.
       I have to see my picture within the 3d picture control eventhough i change the y value between 0-500,how do i solve my problem.
Another my doubt is how do i show the depth value (ie y value in translate object .vi) in 3d picture control ie while the picture is moving in a 3d picture control at the same time i want to display the corresponding depth rating in the 3d picture control
Pls anyone suggest me as soon as possible.
Thanks and regards
jayanthi.k
Attachments:
Untitled 1.llb ‏67 KB

Jayanth,
Take a look at the attached example.  Alternatively, you can search for it in NI Example Finder by going to Help>>Find Examples in LabVIEW, click on the search tab, and search for meshes.  I had difficulty reading your code, but I believe you need to position your lighting source in the optimal location to get better definition.  And the example shows how to bind a color to the object.
Trey B
Applications Engineering
National Instruments
Attachments:
Using Meshes.vi ‏76 KB

Similar Messages

  • How can I set the caption text of picture controls inside an array or how can I choose which array element is assigned using the array elements caption text property.

    I have 8 picture controls inside an array and I would like to set the caption text of these controls.
    I have used the property node of the array and used the array elements property caption text to set the text.
    The problem is however that I set the same text to all the picture controls inside the array.
    My question is how to set caption text of specific elements (Picture control) that I have so far only been able to access using the array elements caption text property.

    Some more help
    1 You could use the caption of the array and place it in front of the selected picture and update that using property nodes.
    2 Like Norbett said if you use a cluster of pictures then their caption can be updated individually.
    Here is a an example that demonstrates the above
    David
    Attachments:
    Modify the Captions Of Pictures.vi ‏83 KB

  • How can I set the size of the font so I don't have to change every new word?

    How can I set the size of the font so I don't have to change every new word?

    In what application?

  • How can I set the size of an image in java?

    How can I set the size of an image in java? I have to choose the width and height of image...thanks to everybody...sorry for my english :-)

    Hi 43477
    Can you provide more details, do you want to setsize to display an image on a screen of when saving image etc?
    PS.
    There is a good invention called googlegoogle is good, but sometimes it's better to use more specific search, there is a search field avove on this page :)

  • HELP !!! How can I set the size of each component separately

    Please tell me, when adding components (a mix of
    labels , buttons etc.) on a container (swing), how can I set the size
    of each component separately.
    for example:
    the code here has a mix of button and a grid that is actually another JPanel. Its a part of a bigger
    program. When running the grid is cut (not seen in its full size).
    So, please try to anser also about the specific acse of frame contining another frame in it , and the interior should be right sized.
    The relevant part of the code:
    =========================================
    public class Reversi extends JFrame {
    public static void main(String[] args) {
    Reversi ourGame = new Reversi();
    public Reversi() {
    super("Grid Reversi");
    setSize(new Dimension(300, 300));
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    Grid g = new Grid(); // the grid was built at another part..
    ReversiGame ourGame = new ReversiGame();
    JButton b;
    JFrame f = new JFrame("Hello Java");
    f.setSize(new Dimension(300, 300));
    f.setDefaultCloseOperation(EXIT_ON_CLOSE);
    Container c = f.getContentPane();
    c.add(g,BorderLayout.NORTH );
    c.add(b = new JButton("Hola"), BorderLayout.CENTER);
    //f.pack();
    f.show();

    BorderLayout chooses the sizes of each of the components added to it. Choose a different layout manager (or set the placement/size manually with a 'null' layout)
    http://java.sun.com/developer/onlineTraining/GUI/AWTLayoutMgr/shortcourse.html

  • How do you set the size / bounds of a waveform chart at run time?

    I have a plot area that I would like to fill with as many waveform charts as the user specifies (at run time). The "bounds" property is read only and I haven't noticed an additional "size" property for a waveform chart as there is for a button. Is there a way to set the size of a waveform chart at run time, and if not, why not? (Labview 6.1)

    Look at it a little more carefully, I suspect that your assumption is only half wrong. The property does only resize the plot area--LV resizes the frame to fit the resized plot on it's own.
    You'll need to bear this in mind when you're figuring-out what size to set the property to.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How can I reduce the size of a picture in iPhoto so it is small enough to post on the web.???

    How can I reduce the size ( Pixels) of a picture in Iphoto so I can post it on the web???

    You could also export the image and use your Preview application to change pixel dimensions.
    Open the image in Preview.
    Go to: Tools > Image size.
    Type in the dimensions you want.

  • How do I reduce the size of a picture that I dragged into a document

    How do I change the size of a photo that I dragged from pictures into a document?  It's huge.

    Try putting your cursor over the document, hold down 'control' and click.
    What are the available options?
    Of course, the exact method will depend on what program the document you've opened belongs to, Word, Pages, Libreoffice, etc?

  • Can I set the size of a GUI control in centimeters?

    Hi,
        I know that I can get the resolution of the monitor, and with that set the display size of a control in a GUI. However, the real size (in centimeters) depends actually on the sizes (in centimeters) of the screen. Can I get that, programatically?
    Solved!
    Go to Solution.

    After writing #include <windows.h> at the beginning of the program, I wrote the following function called by the main.
    void GeometriaGUI(){
    HDC dc;
    double xPixelsPerCentimer, yPixelsPerCentimer,xPixelsPerMilimeter, yPixelsPerMilimeter;;
    dc = GetDC (NULL);
    xPixelsPerCentimer = GetDeviceCaps (dc, LOGPIXELSX) / 2.54;
    yPixelsPerCentimer = GetDeviceCaps (dc, LOGPIXELSY) / 2.54;
    xPixelsPerMilimeter= GetDeviceCaps (dc, HORZRES)/GetDeviceCaps (dc, HORZSIZE);
    yPixelsPerMilimeter= /*GetDeviceCaps (dc, VERTRES)/GetDeviceCaps (dc, VERTSIZE);
    //ReleaseDC (dc);
    SetCtrlAttribute (panelHandle, PNL_INSTR_2, ATTR_HEIGHT, (int)(40.0*yPixelsPerMilimeter));
    SetCtrlAttribute (panelHandle, PNL_INSTR_2, ATTR_WIDTH, (int)(40.0*yPixelsPerMilimeter));
     First, I eliminated the ReleaseDC line because it caused an error "Type error in argument 1 to `ReleaseDC'; found 'HDC' expected 'HWND'." at compile time.
    If I use xPixelsPerCentimeter to set the size of a control in the GUI, and set a value of 4*xPixelsPerCentimeter, I get, after measuring with a ruler, only 3.5 cm.
    If I use 40*xPixelsPerMilimeter,  I get a size of 1.8 cm. In both cases, 4 cm are expected.
    If I look at the values given the Windows sdk functions, the ones given by the resolution are atribute are fine (1280 x 800). However, the ones given by HORZSIZE and VERTSIZE attributes don't match what I measure physically. The sizes given are larger than the computer itself (a notebook with only 1 monitor).
    The idea is that the size of certain controls are constant across any monitor used. But the function, unfortunately, is not giving the expected results.

  • How can I set the size of combo boxes on a toolbar

    Hi, I am trying to use setMinimumSize of a combo box on a toolbar, It doesn't seem work. The code as following? Can anyone tell me how I can do it ?
    JComboBox sw = New ComboBox();
    sw.setMinimumSize(new Dimension(10,10));
    Thank you.
    Scott

    use the method preferred size of the JComponent superclass of the combos:
    setPreferredSize
    public void setPreferredSize(Dimension preferredSize)
    Sets the preferred size of the receiving component. If preferredSize is null, the UI will be asked for the preferred size.

  • How can i set the location of my pictures in photos app for mac osx?

    Not every photo I import into my MacBook have all the metadata in them. iPhoto allowed for setting the location, but in Photos I cannot manage to do so. Is there another way to do it or perhaps it's coming with an update?
    Thanks
    MacBook Mid-2010
    OSX Yosemite 10.10.3
    Photos 1.0

    Adding location data is not yet supported in Photos.
    And we do not know, if future updates will  support this feature. It might help, if you send back feedback to Apple with a feature request. You can use this form:  Apple - Photos - Feedback
    As a work-around, use third party apps to add location data before you import the photos to Photos.
    You could, for example, first import to iPhoto, add the locations, batch change the titles and captions, do all the things that are not yet supported in the new Photos, then export the photos from iPhoto and import them to Photos.
    Or use the free exiftool, if you like the Terminal.
    See:  http://www.sno.phy.queensu.ca/~phil/exiftool/exiftool_pod.html#geotagging_exampl es
    To install exiftool: http://www.sno.phy.queensu.ca/%7Ephil/exiftool/install.html
    Other convenient apps are Jetphoto Studio, Geotagalog, there are many more ..
    I use Jetphoto Studio, but it is not free.

  • How can i set the size of the task windows and text to something more suitable?

    When i bought my HP Touchsmart 600 pc the text size and window size on the desktop were tiny as Default, i manage to change it where it wasnt to big or small it was just right.
    but recently i had to restore my whole computer back to factory settings and now the text is huge and the windows are coming up big as well. i played around in the display settings and put it at 100% default and that doesnt help i then tried it on 125% but that is still big...
    i cant remember how i did it last time and its really hard to explain. but could anyone help me and point me in the right direction cause its annoying i use to fit like 10 icons vertically in a row on my desktop now i can fit only 8 and the start menu comes up huge.
    so if any one could help me out it would be great! thankyou in advance. 

    Hi 43477
    Can you provide more details, do you want to setsize to display an image on a screen of when saving image etc?
    PS.
    There is a good invention called googlegoogle is good, but sometimes it's better to use more specific search, there is a search field avove on this page :)

  • How do I set the size of the font so that it does not change from site to site or page to page?

    The font size happens when I visit a new site or move from page to page in any given site. I want to have the same size font at all times with out having to manually change it all the time.

    If you need to adjust the font size on websites then look at:
    * Default FullZoom Level - https://addons.mozilla.org/firefox/addon/6965
    * NoSquint - https://addons.mozilla.org/firefox/addon/2592

  • How do you change the size of a picture?

    Product name and number: Photosmart Premium Fax e-ALL IN-ONE C410 series, C410a from SusieQ6

    I would be glad to help you out with this, but there is a bit more information i would need.
    Where are you attempting to change the picture from? Is it from the front panel, eprinting, a mobile device, or a windows pc/mac computer?
    Jon-W
    I work on behalf of HP
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    Click the KUDOS STAR on the left to say “Thanks” for helping!

  • How to set the size of popups from KM Navigation Iview

    Hello guys
    Does any of you know how I can set the size of the window that pops up when you click on a resource/file in a KM navigation iview?
    I have tried to enter "width=100,height=100" (without the quotes) in the Window Features property of the KM Navigation Iview, but it does not influence the size of the popups.
    Any suggestions to what could be wrong? Or is it not possible at all to control the size of that popup?
    Kind regards,
    Martin

    Hi,
    I cheched yesterday if I could find the command, sorry I couldn't.
    I also realized that the layout generates html link tags (ie. <a />) for the resource links, no javascript open link functions (ie. window.open), wich doesn't alowed (as far as I know) to give size to the pop-up window.
    So to make the link of the resource (gived by the <b>displayname(contectlink)</b> property set) I think you would have to <i>create (develop)</i> the layout, so the link will be rendered with window_size.
    You have other option, you can take off the "<i>contentLink</i>" setting. and add the <b>download</b> command, so the user who want to open / save the document can click on this command and do it in their PC.
    I.E, Create a copy of the <b>download</b>, and add this to the Collection render displayed porpeties:
    rnd:command(command=Z_download/style=link)
    You ca also use and icon to represent the download (you can set that icon in the command)
    I.E, rnd:command(command=Z_download_icon/style=icon)
    This last options represents a problem with the km-only-read content like xml files generaded by xml forms, it can only be readed in the km-portal.
    I hope this might help you.
    Best regards,
    Jorge M.

Maybe you are looking for

  • Order value fields by field label in the profitability analysis document

    Hello, I am displaying a profitability analysis document and I want to order the value fields by their technical name (VV001, VV002, VV003...) instead of in alphabetical order (the system orders them by the field label). Is it possible? Thank you ver

  • Nokia 5800 swipe to answer not working in firmware...

    Hello, I have updated my nokia 5800 xm  last week using nokia pc suite. Everything was working fine till last week. Now, whenever I recieve a call, I'm not able to answer the call by sliding the answer option in the screen. I have to unlock the touch

  • Inspect with Task list not visible in QM view

    In Material master QM view, for 01 inspection type, inspect with tast list is not visible. Please advice how to make visible.

  • Dialog Program

    Hi,               How to develop a module pool program which will create, change and display monthly fixed prices for a product.              Tell me the step-by-step procedure. Bye...

  • When connect the Database from Toad , Sqlplus giving the error

    when connect the Database from Toad , Sqlplus giving the error recent changes 12.1.1 installatiojn Oracle SQL plus encountered a problem and needs to close we are sorry for convenienvce Oracle Forms Designner has encountered a probloem and needs to c