Rotation object on RT Target

Is there a reason why a graphic object will not display when the project is deployed to a real time target?
I am attempting to visualize sensor outputs by observing the position of a graphics object on the LV Front Panel.
Thanks.
Attachments:
Graphics.vi ‏14 KB

Richard1000 wrote:
The Set Rotation is the RT VI?  Or it becomes a RT VI when deployed to a RT Target?
When running in the development environment, is there an alternative approach allowing sensor values to update the orientation of the graphic object?
Thanks.
It becomes an RT vi when deployed to the target.
The alternative approach is actually the correct approach . You create a VI that runs standalone and headless on the RT platform. You then use some sort of network communication (see: TCP/IP) to pass the values up to a host computer. The host computer reads the values and displays them.
CLA, LabVIEW Versions 2010-2013

Similar Messages

  • Which Objects should I target for integrating Eloqua REST API 2.0?

    Which Objects should I target for integration? and What are the possible use cases for the additional objects other than core objects?

    I am still trying to find a good REST API 2,0 document like the Bulk 2.0 document.  Book List: Oracle Marketing Cloud
    I did find this but is also not in depth:
    REST API - Documentation for Core Objects

  • How to always rotate objects around the same point, even using the right-click menu?

    I need some of my objects to always rotate around the same point. How can I select a point which will stay that way?
    Using the rotate tool resets after deselecting.
    Also, I'd like to rotate objects around a certain point even when using the right click > Transform > Rotate.
    Is it possible?

    Right, so this is where Illustrator falls short with respect you your need, but only in the sense that the reference point can't be made to stick. You can, however, use Smart Guides to make it so the point is easy to set at exactly the same location, (especially since your object has an anchor point there), manually before each rotation.

  • Rotating objects in a table

    I have dropped an object (picture) into a pages document. Then I rotated it with 90°. When I copy or drop the picture into the cell of a table, it is rotated back into the original orientation and I cannot rotate it any more.
    Is there a possibility to rotate objects in table cells?

    The only way I can find to do it actually doesn't insert the graphic in the table per se. It's a workaround that may or may not suit your purposes. FWIW:
    1. Click outside the margin and insert a shape (square) as Fixed on Page and in the Wrap Inspector deselect Object Causes Wrap.
    2. Drag it over the cell you want the picture in and size it to fit the cell.
    3. In the Graphic Inspector's drop down Fill menu, choose Image Fill and choose your picture (rotated as you want it). In the drop down menu below the Fill menu, select either Scale to Fit or Scale to Fill, as necessary.
    4. When you have the picture situated as you want it, click on the picture and shift click on the table and from the Arrange menu select Group.
    At this point you can set it for Moves With text if that is what you need, or leave it as Fixed on Page and position it where you want it.
    Hope this helps.
    Walt

  • Is it possible to create a rotating object in Muse?

    Is it possible to create a rotating object in Muse? I have a round logo and I want it rotating.

    HI
    If you are looking for an animated logo, which rotates in 360 degree, it is not possible in Muse. You can create an animation in Edge animate and import the animation in Adobe muse.,

  • A program that can rotate objects

    Is there any done program that can rotate objects from graph?
    I am not a programmer I just need to use that for mathematics.
    Any help will be appreciated.

    I'm not sure what you are asking for. You can rotate an image with [url http://java.sun.com/j2se/1.4.2/docs/api/java/awt/geom/AffineTransform.html]AffineTransform. You can look at the source for it in src.zip. You can [url http://onesearch.sun.com/search/developers/index.jsp?col=devforums&qp_name=Algorithms&qp=forum%3A426&qt=rotate]search for algorithms.

  • Noob question, can't rotate object clockwise. Please see the pictures below.

    Hello everybody!
    I'm stuck at rotating objects as I tried to follow a tutorial.
    I think the answer is very simple, but because of my weak English, i can't even figure it out how to search for it on Google. tio
    So my question is how to rotate objects like this:
    Instead of this (That's how i can only rotate this object.):
    Thanks in advance!

    zollre,
    - before the value gives you clockwise. Basically, rotate angles are counterclockwise (with an implied + before the value).
    -20 degrees corresponds to 340 degrees (almost a full round counterclockwise).

  • How to rotate objects or pictures on my FP?

    Hi there,
    i'd like to rotate objects on my front panel programmatically, e.g. a pasted arrow to indicate a direction . As an alternative i could imagine to rotate a picture in some kind of AcvtiveX control. does anybody got a clue?
    thanks
    chris
    Best regards
    chris
    CL(A)Dly bending G-Force with LabVIEW
    famous last words: "oh my god, it is full of stars!"

    Rotating an arbitrary picture is just a transformation, should also be easy.
    I made a quick example (LabVIEW 7.1), see if it makes sense. Message Edited by altenbach on 03-22-2005 10:11 AM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    RotateImage.vi ‏80 KB

  • Rotating object around global axises.

    Hi there. I'm writing a simple Java3D application, intended for viewing a object loaded from OBJ file, allowing user to scale and rotating this object, by using keyboard, around all axises.
    My problem is, that every rotation is occurring around local axises, apparently relative to object, and my intention is, to rotate object relatively to world's coordinations or just camera's.
    My Behaviour class code goes here:
    (some variables names are in my native language)
    public static class ObjectManipulation extends Behavior{
        private TransformGroup targetTG;
        private Transform3D trans = new Transform3D();
        private Transform3D temp_trans = new Transform3D();
        private double skala = 0.4f;
        ObjectManipulation(TransformGroup targetTG) {
            this.targetTG = targetTG;
        public void initialize() {
            this.wakeupOn(new WakeupOnAWTEvent(KeyEvent.KEY_PRESSED));
        public void processStimulus(Enumeration criteria) {
        WakeupCriterion wakeup;
        AWTEvent[] event;
            while( criteria.hasMoreElements() ) {
              wakeup = (WakeupCriterion) criteria.nextElement();
              if(wakeup instanceof WakeupOnAWTEvent) {
                    event = ((WakeupOnAWTEvent)wakeup).getAWTEvent();
                        for( int i = 0; i < event.length; i++ ) {
                            if( event.getID() == KeyEvent.KEY_PRESSED )
    checkEvent((KeyEvent)event[i]);
    this.wakeupOn(new WakeupOnAWTEvent(KeyEvent.KEY_PRESSED));
    private void checkEvent(KeyEvent ke) {
    int klawisz = ke.getKeyCode();
    if(klawisz == KeyEvent.VK_S) {
    temp_trans.rotY(Math.PI/10.0f);
    trans.mul(temp_trans);
    targetTG.setTransform(trans);
    } else if (klawisz == KeyEvent.VK_A) {
    temp_trans.rotY(Math.PI/-10.0f);
    trans.mul(temp_trans);
    targetTG.setTransform(trans);
    } else if (klawisz == KeyEvent.VK_W) {
    temp_trans.rotX(Math.PI/10.0f);
    trans.mul(temp_trans);
    targetTG.setTransform(trans);
    } else if (klawisz == KeyEvent.VK_Z) {
    temp_trans.rotX(Math.PI/-10.0f);
    trans.mul(temp_trans);
    targetTG.setTransform(trans);
    } else if (klawisz == KeyEvent.VK_X) {
    temp_trans.rotZ(Math.PI/10.0f);
    trans.mul(temp_trans);
    targetTG.setTransform(trans);
    } else if (klawisz == KeyEvent.VK_C) {
    temp_trans.rotZ(Math.PI/-10.0f);
    trans.mul(temp_trans);
    targetTG.setTransform(trans);
    } else if (klawisz == KeyEvent.VK_M) {
    if(skala > 0.1f) {
    skala -= 0.1f;
    } else {
    skala = 0.0f;
    trans.setScale(skala);
    targetTG.setTransform(trans);
    } else if (klawisz == KeyEvent.VK_N) {
    if(skala <= 3.0f) {
    skala += 0.1f;
    } else {
    skala = 3.0f;
    trans.setScale(skala);
    targetTG.setTransform(trans);

    OK, using the tornado example. i want the point where the 'tornado' meets the 'ground' to spin so that the 'tornado', well, looks like a tornado, spinning around a specific, i.e. x,y,z pixel. instead i have a tornado that seems to be pulling doughnuts in the farm carving out a huge cirlce (like the aliens do) rather than what a stationery tornado would carve out (if there was such a thing).
    if it helps, think about the bounding box that surrounds an object or layer. the entire bounding box spins around the anchor point, or at least that's what it seems it is doing. it draws a huge circle that it ROTATES around rather then one point that is SPINS around. think about rotating a camera around it's Y axis, the whole box rotates, moving everything rather than spinning without moving. thanks.
    hope this helps.

  • Rotating objects controlled by scrolling

    I would like to see scroll motion to control the rotation on an object. Scrolling would make an object rotate while staying in the same center point location. If this is already possible, please let me know!
    Cheers,
    Ingrid

    here you go, 5 copies
    50 copies
    #target Illustrator
    //  arranges duplicates of selected object into a spiral
    // step is 1.1 cm - 17 degrees hardcoded
    // select object before running
    // CarlosCanto 3/1/11
    var idoc = app.activeDocument;
    var isymbol = idoc.selection[0];
    var teta = 0; // initial angle
    var r = 1*28.346; // first dup, // 1 cm = 28.346 pts
    var deltaTeta = 17; // angle increment
    var deltar = 1.1*28.346; // distance increment
    var a = prompt ("how many copies", 5, "Spiral Symbol Duplicates")
    for (i=1 ; i<=a ; i++)
              var dupSymbol = isymbol.duplicate();
              var deltaX = r*Math.cos(teta*Math.PI/180);
              var deltaY = r*Math.sin(teta*Math.PI/180);
              dupSymbol.translate (deltaX, deltaY);
              r = r+deltar;
              teta = teta+deltaTeta;

  • Drag and drop objects to multiple targets

    i have tried a lot of time to make my project into a success... However, it never work... i will be very appreciate with your kind help... please
    this is the link to my swf... all objects are accepted when i drop it into the plastic bin...
    http://megaswf.com/serve/77800/
    var startX:Number;
    var startY:Number;
    var counter:Number = 0;
    two.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    two.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    one.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    one.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    three.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    three.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    twotwo.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    twotwo.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    oneone.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    oneone.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    threethree.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    threethree.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    function pickUp(event:MouseEvent):void {
    event.target.startDrag(true);
    reply_txt.text = "";
    event.target.parent.addChild(event.target);
    startX = event.target.x;
    startY = event.target.y;
    function dropIt(event:MouseEvent):void {
    event.target.stopDrag();
    var myPlasticBin:String = "target" + "one" || "oneone" ;
    var myPlastic:DisplayObject = getChildByName(myPlasticBin);
    if (event.target.dropTarget != null && event.target.dropTarget.parent== myPlastic){
    reply_txt.text = "Good Job!";
    event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    event.target.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
    event.target.buttonMode = false;
    event.target.visible = false;
    event.target.x = myPlastic.x;
    event.target.y = myPlastic.y;
    counter++;
    } else {
    reply_txt.text = "Try Again!";
    event.target.x = startX;
    event.target.y = startY;
    if(counter == 6){
            reply_txt.text = "Congrats, you're finished!";
    three.buttonMode = true;
    one.buttonMode = true;
    two.buttonMode = true;
    threethree.buttonMode = true;
    oneone.buttonMode = true;
    twotwo.buttonMode = true;

    yup finally i have done with my problems!!! thanks ^^

  • HT4641 How do I rotate objects and text ?

    I do not know how to rotate my document too change to landscape .  Want 11.5 x 8 . Thanks, Bill

    You don't rotate the document on an iPad; you can rotate the objects on the document.
    That said, you can't rotate in-line text and headers and footers, only text boxes and images/shapes.
    To rotate the document, you will need to export it to a Mac and change the orientation there in Page Setup. The iPad document setup is lacking this feature.
    Sorry.

  • How to typecast an object, if the target class name is stored in a str var

    Hi,
    I have a method, in which i will receive an object as an attribute. I need to typecast it to another class, and that class name is stored in a string variable.
    public void printContent(Object obj)
    /* Here i have a variable strClassName - in which a class name is stored.
    I need to create a variable for that class and type cast the object obj into that class. */
    Please kindly help me to find out a way to do this.
    Thanks in advance

    Typecasting does one thing: it enables you to store an object in a reference variable of the target type (if it is of a type which is allowed to be in that variable). It doesn't alter the object in any way.
    Therefore it simply isn't meaningful to talk about typecasting to a type name known only at run time. The whole point of typecasting is to tell the compiler to treat a reference as being of a specified type.
    I don't know what you're trying to do but I think you should probably be looking at the reflection api, getting field an method information from the object's Class object.

  • Rotate object based on the mouse movement

    Hi, how can I do to make the object rotate based on the direction and movement of the mouse?
    Similar to this: http://activeden.net/item/billboard-style-xml-photo-viewer/22111
    Thanks in advanced.

    Hi ,
    I created a simple sample for you. Hope that helps!
    Basically on the image elements' ($("image")) mouse move you could add this snippet -
    // insert code to be run when the mouse is moved over the object
    var img = sym.$('image');
    var offset = img.offset();
    var center_x = (offset.left) + (img.width()/2);
    var center_y = (offset.top) + (img.height()/2);
    var mouse_x = e.pageX;
    var mouse_y = e.pageY;
    var radians = Math.atan2(mouse_x - center_x, mouse_y - center_y);
    var degree = (radians * (180 / Math.PI) * -1) + 90;
    img.css('-moz-transform', 'rotate('+degree+'deg)');
    img.css('-webkit-transform', 'rotate('+degree+'deg)');
    img.css('-o-transform', 'rotate('+degree+'deg)');
    img.css('-ms-transform', 'rotate('+degree+'deg)');
    Thanks and Regards,
    Sudeshna Sarkar

  • Rotating object sampling quality issues

    A student of mine asked this question today. Rotating sharp-edged artwork seems to be problematic in Photoshop.
    Take this grid:
    Original file (6 colours):
    www.estructor.biz/testje/grid2.png
    Now rotate by 45 degrees.
    These are the results in Photoshop CS6 labeled by sampling method:
    www.estructor.biz/testje/ps_grid.png
    And these are the results in Photoline (latest beta introduced improved two new sampling algorithms):
    www.estructor.biz/testje/pl_grid.png
    I uploaded the raw png files to my own server, otherwise the quality may be affected by the upload function here.
    To compare both, open them in Photoshop and zoom to 200% or 400%, and notice how Photoshop's versions do not compare favourably: some sort of unsharp mask sharpening effect was introduced, resulting in halos.
    The CatmullRom version generated in Photoline seems to be the best one, though the ones with MitchellNetravali, Lanczos3 and even bicubic all arguably produced better anti-aliased versions than the ones in Photoshop. In Photoshop only Bicubic Smooth is acceptable (in my opinion), though the anti-aliasing is too smooth looking.
    I am aware the effects can be subtle - though they are quite noticeable. I mean, why does Photoshop's bicubic sampling prodube such an inferior version compared to Photoline? It makes no sense.
    A secondary observation I made is that Photoshop's version introduced 2271 colours into the rotated version, while Photoline only used 231 unique colours after transformation. Which, with Photoline's version being the superior one, exacerbates the problem in my view, because it will add to the final artwork's file size (may be very important for both web graphics and 2d game graphics).
    From a user experience view point, another issue is that Photoshop CS6 will not render the final result as a preview before the actual transformation is applied - meaning the user is left to first apply the transformation, and then she/he is forced to undo, and redo until satisfied. In Photoline, for example, the transformation's sampling method can be changed and the actual result is shown before committing to a sampling method.
    All this is not that important to me for my own personal work, because I switched to Photoline and other software more than a year ago. However, I do still want to be able to answer questions from students in regards to Photoshop, so I feel it is an important aspect.
    So, my (and my students') questions are:
    - is it possible to turn off that unsharp mask-like effect when rotating?
    - are there ways to improve the sampling somehow?
    - down-sampling sharp artwork also introduces similar problems. Any way to circumvent them?
    - placing the grid/dragging the grid file into a photoshop file produces a terrible result. Only by opening the grid file first, and copying and pasting is the original artwork preserved. Drag and drop does not function properly (and refuses to place at 100% automatically). Any solutions to change the drag and drop behaviour to automatically resample?
    (btw, this does not happen in Photoline either - drag and drop does not (and should not!) resample in this case!)
    - have these issues been resolved in Photoshop CC latest version?
    - if the current versions of CS6 or CC do not offer solutions for this type of work, is this something that will be fixed in an upcoming release? Or is it not at all on the radar?
    Thanks.
    ps As mentioned before in the Illustrator forum, exporting sharp artwork from Illustrator at low screen resolutions is by far the lesser of a viable option - the anti-aliasing is absolutely horrid, unless the artwork is directly imported into Photoshop and severely blown up, and then scaled down. And even then the results are not on par with Mitchel-Netravali and Catmul Rom.

    @Steve: thanks, but I am quite experienced, and I did not import the vector itself, but a straightforward bitmap grid to avoid any interpolation while importing and converting the vector graphic itself. Also see the first paragraph in my response to Mike below .
    @Mike: importing the grid as a smart illustrator object does indeed help - but the lines are too thick and dark looking compared to Mitchell-Netravali and Catmull-Rom.
    Exporting your screen sized artwork from Illustrator using the save for web option is positively the worst option: the quality is unacceptable in most cases. I've done a small write up concerning the bad anti-aliasing as a result of Illustrator's web export here:
    http://forums.adobe.com/message/6002543#6002543
    The only workable solution to get the best anti-aliased down-scaled artwork from Illustrator is to blow up the artwork to a large size, then rasterize, and scale down again. Even then the final quality as a result of the built-in sampling algorithms of Photoshop will not be on par with Photoline or ImageMagick.
    And, of course, not always is a vector version available. The screen artwork I receive is often bitmap based, which proves to be problematic for transformation jobs in Photoshop.
    Gif is merely 8bit indexed, and would not solve the issue - reducing the number of colours is no solution for poor anti-aliasing along edges.
    @Chris: I am unsure how you can say that - yes, Catmull-Rom is known to be a less than ideal re-sampling method for up-scaling images. That said, it works wonderfully well for down-sampling images or as a sampling method to transform lower resolution bitmap based artwork - essential for screen based work and web jobs.
    Lanczos does a meagre job for down-sampling (with Lanczos8 especially bad in terms of artifacts), but a very good job for up-sampling images. We have to know the goal to identify the best method/approach/solution.
    Although I am certain you are familiar with the math, the example shown on this page demonstrates that Catmull-Rom and Mitchell-Netravali do in fact work best for down-sampling images: http://pixinsight.com/doc/docs/InterpolationAlgorithms/InterpolationAlgorithms.html
    And I am not inventing all this - for lower resolution sharp edged illustrative artwork Photoshop has always been rather awkward. The sampling methods currently implemented in Photoshop deal very well with high resolution artwork and photographic media, but fare poorly with lower resolution graphics.
    The demonstration files I prepared earlier and linked in my original question show unequivocally that Photoshop's current sampling algorithms deal poorly in this regard! I did not even bother to include Bicubic Automatic, because that looked positively awful.
    I do understand why that is - traditionally it has never been Photoshop's focus I think. Looking at the bare-bones results, though, I am inclined to conclude that both Mitchell-Netravali and Catmull-Rom do indeed produce superior results for down-sampling and re-sampling during transformations of lower resolution images - both sharp-edged artwork, as well as photos.
    This has been my experience for years now dealing with 2d game graphics, web work, and general screen graphics work. It is one of the reasons why I left Photoshop and Illustrator early on for this type of work.
    So it eludes me why these are not available in Photoshop. Because as far as the results are concerned, they seem to be quite good enough to ship.

Maybe you are looking for

  • My photos dont appear in iphoto

    Yesterday I downloaded some 1700 photos from my Android phone to my MacBook Air. I chose to have the photos copied to iPhoto. Now this morning when I opened iPhoto, it show spaces for where the photos are but only little grey thumbnails and I cannot

  • Sending SAPSCRIPT in PDF through email

    Hi everybody, I'm trying to send via email a sapscript. I red more posts regarding this issue but nothing seems to run correctly. Some posts refers to a sample program ZRICH_0003. I've just copied the code and replaced the form's name with one of min

  • TextField validation with multiple options

    Hi. I am trying to create a textField widget that can have a number of possible correct answers. Can anyone let me know if this is possible. I have successfully created a textField that validates one answer with the use of Type Custom, but i am unsur

  • LR, dual displays, Photoshop and Win7 (solved)

    I've been reading all morning and this is what I think I now know: Photoshop will use discrete monitor profiles to properly display images on either monitor of a calibrated and profiled dual monitor setup. Lightroom (and, apparently, Bridge according

  • Need To Turn Off Auto-Renewal

    Hello, I have just boguht a subscription to Unlimited US & Canada for 1 month [$2.99] Without knowing it would be auto renewing. My family is very poor at this time, and I would really like to shut off the auto renew, as Im not going to be able to af