How to create a circle with the origin not at (0,0)

I want to create a circle but the origin is not at (0,0).
I have the following data;
- point coordinate (X1,Y1)
- radius of the circle
Also, I want to create a line between the origin and the point (X1,Y1).
Kindly show me how can I do this. Thank you very much. 

The accuracy of the GPS Receiver is +/- 0.5 meter. Its a Novatel product (Flex Pak). I am getting the string data from the GPS receiver. I took the Longtitude data as for my X and Latitude data for my Y. I took the Longtitude and Latitude data from the center of post for my reference calculation only to get the true value of X and Y at the end of the boom. I call the X and Y value at the end of the boom as dynamic because it always give me the value wherever the boom goes. Please see the attached sample VI's.
At one point , I actually measured, using a tape measure,  the distance from the end of the boom to the center of post and i am getting the correct radius. But when I rotate the boom on the other side it will give me a different radius. And looking at this radius value, while rotating the boom, I can judge that my point of origin is not (0,0).
At this point I have no idea how to get the correct origin. Kindly teach me if you have idea on this.
Do you think the way I calculated for the true value of X and Y is still correct? Is my reference too far?
Thank you very much.
Attachments:
plotting xy graph 1.vi ‏22 KB
dynamic xy calculation.vi ‏28 KB
dynamic radius calculation 1.vi ‏15 KB

Similar Messages

  • Can someone tell me how to create accounting entries with the account status as error

    Hi,
    Can someone tell me how to create accounting entries with the
    account status as error?
    Thanks!!
    Danny

    It's call fixed/static background, and it is NOT directly support by iweb, you will need post processing either in html or javascript.
    Varkgirl (you need to search the previous forum) and I did it since iweb1:
    try Safari, and scroll: http://www.geocities.com/[email protected]/Links.html
    invisible link? roddy, fishing for info again?

  • I did the latest update on my iphone and now I have a displayed white usb cord with an arrow pointing to ITunes with the circle with the musical note inside.  I can't turn off the phone nor can I get beyond this display.  Phone goes to voice mail..no ring

    I installed the latest update to my iphone 4 and now all I have is a display of the white usb cord with arrow pointing to ITunes with a clue circle with the musical note in it displayed.  I can't access my phone at all.  I tried calling it and it says unavailable.  I don't know how to restore it...it says it is in recovery mode but when I try to recover, it says no iphone found.
    I have no idea how what to do to restore my phone.  It's fully charged.
    GRRRR

    Put the device in DFU mode (Google it) and restore.

  • How to create a pdf with the correct size?

    Hi there
    How do I create a pdf with the correct size? I created several albums and ordered them. Now I want to backup the album and I know how to create a pdf, but when I choose A5 it's to big, when I create my own size it's not the size it should be. The original (made with iphoto) is a small size album 200x150mm. But when I create my own size (200x150) it shows some white borders.
    Does anybody have some tips ore workarounds?
    Yuri
    Imac
    Iphoto 11 (9.4.2)

    Books are designed for and printed on 8.5 x 11 inch stock, US Letter size.  You shouldn't have to select any size.  While viewing the All Pages mode in the book Control-Click on the page and select Save Book as PDF from the contextual menu. 
    That will create a PDF that iPhoto uses to upload and print.  Not all pages will be the same size as the dust jacket will be present in it's full size, 32.8 inches x 8.91 inches:
    If you want a PDF that's designed for your own printing the type Command+P while viewing the All Pages window.  In the first print window click on the PDF button.  It will present you with a contextual menu where you should select Save as PDF.  That will give you an 8.5 x 11 PDF file with all pages the same size.
    OT

  • How to create a button with the drop-down menu?

    I want to create a button with the drop-down menu, which is like the 'back' on the tollbar in IE. I heard JPopupMenu can reach the certain result, but the button hadn't a down arrow. Who can help me?

    i have made something like this :
    //======================================================================
    package com.ju.guiutils
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    import java.util.Vector;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import javax.swing.plaf.basic.BasicComboBoxUI;
    * @version 1.0 14/04/02
    * @author Syed Arshad Ali <br> [email protected]<br>
    * <B>Usage : </B> ButtonsCombo basically performs function button + JComboBox, if we have different options for
    * <BR>same button then we can use this ButtonsCombo.
    *<BR> By the way there is no button at all in <I>ButtonsCombo</I>
    public class ButtonsCombo extends JComboBox {
    //===================================================================================
    * Create ButtonsCombo with default combobox model
    public ButtonsCombo () {
    super ();
    init ();
    //===================================================================================
    * Creates a ButtonsCombo that takes it's items from an existing ComboBoxModel.
    public ButtonsCombo ( ComboBoxModel model ) {
    super ( model );
    init ();
    //===================================================================================
    * Creates a ButtonsCombo that contains the elements in the specified array.
    public ButtonsCombo ( Object [] items ) {
    super ( items );
    init ();
    //===================================================================================
    * Creates a ButtonsCombo that contains the elements in the specified Vector.
    public ButtonsCombo ( Vector items ) {
    super ( items );
    init ();
    //===================================================================================
    private void init () {
    setBorder ( BorderFactory.createBevelBorder ( BevelBorder.RAISED ) );
    setRenderer ( new ComboRenderer() );
    setUI ( new ComboUI() );
    addMouseListener ( new ComboMouseListener() );
    //===================================================================================
    * Set items for ButtonsCombo in the specified array
    public void setItems ( Object [] items ) {
    setModel ( new DefaultComboBoxModel( items ) );
    //```````````````````````````````````````````````````````````````````````````````````
    * Set items for ButtonsCombo in the specified Vector
    public void setItems ( Vector items ) {
    setModel ( new DefaultComboBoxModel( items ) );
    //```````````````````````````````````````````````````````````````````````````````````
    * Get current items in a array
    public Object [] getItemsArray () {
    ComboBoxModel model = this.getModel ();
    if ( model != null ) {
    int size = model.getSize ();
    if ( size > 0 ) {
    Object [] items = new Object[ size ];
    for ( int i = 0; i < size; i++ ) {
    items[ i ] = model.getElementAt ( i );
    return items;
    return null;
    //```````````````````````````````````````````````````````````````````````````````````
    * Get current items in a Vector
    public Vector getItemsVector () {
    ComboBoxModel model = this.getModel ();
    if ( model != null ) {
    int size = model.getSize ();
    if ( size > 0 ) {
    Vector itemsVec = new Vector();
    for ( int i = 0; i < size; i++ ) {
    itemsVec.addElement ( model.getElementAt ( i ) );
    return itemsVec;
    return null;
    //===================================================================================
    class ComboMouseListener extends MouseAdapter {
    public void mouseClicked ( MouseEvent me ) {
    ButtonsCombo.this.hidePopup ();
    public void mousePressed ( MouseEvent me ) {
    ButtonsCombo.this.hidePopup ();
    ButtonsCombo.this.setBorder ( BorderFactory.createBevelBorder ( BevelBorder.LOWERED ) );
    public void mouseReleased ( MouseEvent me ) {
    ButtonsCombo.this.hidePopup ();
    ButtonsCombo.this.setBorder ( BorderFactory.createBevelBorder ( BevelBorder.RAISED ) );
    //===================================================================================
    class ComboRenderer extends JLabel implements ListCellRenderer {
    //````````````````````````````````````````````````
    public ComboRenderer () {
    setOpaque ( true );
    //````````````````````````````````````````````````
    public Component getListCellRendererComponent ( JList list, Object value, int index, boolean isSelected, boolean cellHasFocus ) {
    setBackground ( isSelected ? Color.cyan : Color.white );
    setForeground ( isSelected ? Color.red : Color.black );
    setText ( ( String )value );
    return this;
    //````````````````````````````````````````````````
    //===================================================================================
    // We have to use this class, otherwise we cannot stop JComboBox's popup to go down
    class ComboUI extends BasicComboBoxUI {
    public JButton createArrowButton () throws NullPointerException {
    try {
    URL url = getClass ().getResource ( "/images/comboarrow.gif" );
    JButton b = new JButton( new ImageIcon( url ) );
    b.addActionListener ( new ActionListener() {
    public void actionPerformed ( ActionEvent ae ) {
    return b;
    } catch ( NullPointerException npe ) {
    throw new NullPointerException( "/images/comboarrow.gif not found or /images folder not in classpath" );
    catch ( Exception e ) {
    e.printStackTrace ();
    return null;
    //======================================================================
    you can cutomize this according to your requirement , okie ;)

  • How to create a circle from the centre?

    Hi. I'm using PS CS3 and I want to create a perfectly round circle from the centre. How do you do this?
    I know pressing shift while dragging makes it perfectly round. I've also read that pressing alt at the same time draws it from the centre, but it's not working, it just comes up with the eyedropper tool. Am I missing something or is there a different way to do it?
    Thanks.

    Hi,
    If you click and hold the mouse and then press the Alt key and drag it should work.
    Also, after you start dragging, add the Shift key to constrain to a circle.

  • How to create reports servers with the same name in two nodes in Reports

    Greetings
    We are migrating Oracle Application Server 10g (9.0.4) to a better hardware infrastructure with high availability. We want to provide 2 new Oracle Application Server 10g (9.0.4) in High availability and we want to avoid modify the existing forms and reports code, but the code is looking for a specific reports server name when calling reports, but I couldn't create the same reports server name in the both oas machines, I could create the reports server in only one node. I want to create a reports server with the same name in both nodes but it is not possible. I know that there is a procedure to do that in 10.1,2 (Note 437228.1, How to Create Two Reports Servers With the Same Name in the Same Subnet) but I couldn't find the equivalent procedure in 9.0.4.
    Anybody kwows how to create a reports server with the same name in two nodes using 10g (9.0.4)
    Thanks
    Ramiro Ortiz.

    Hello.
    I applied the patch 4092150 on my oas 9.0.4.2 and I modified my rwnetwork.conf file changing the port to 14022 by following the note "How to Create Two Reports Servers With the Same Name in the Same Subnet? [ID 437228.1]" but I am facing the same error rep-56040 "server already exists in the network".
    When I run osfind command I get the following information (My reports server is senarep and I want to create it on SNMMBOGOAS10):
    osfind: Found 2 agents at port 14000
    HOST: SNMVBOGOAS10.sena.red
    HOST: SNMVBOGOAS09.sena.red
    osfind: There are no OADs running on in your domain.
    osfind: There are no Object Implementations registered with OADs.
    osfind: Following are the list of Implementations started manually.
    HOST: SNMVBOGOAS10.sena.red
    REPOSITORY ID: IDL:oracle/reports/server/EngineComm:1.0
    OBJECT NAME: senarep2
    REPOSITORY ID: IDL:oracle/reports/server/ServerClass:1.0
    OBJECT NAME: senarep2
    HOST: SNMVBOGOAS09.sena.red
    REPOSITORY ID: IDL:oracle/reports/server/EngineComm:1.0
    OBJECT NAME: senarep
    REPOSITORY ID: IDL:oracle/reports/server/ServerClass:1.0
    OBJECT NAME: senarep
    Any Ideas?

  • How to: Create a Program with the rs232 Device -Magcard Reader Writer

    Hi Guys!. 
    Im New in using VB.net 2010 express 
    and it is my first time to do a project with a device needed to incorporate with it.
    I have a device Magnetic Card Reader writer and a i want to create a connection and UI 
    that interacts with the device alone without using the default application and process.start command.
    the main problem i want to be solve is to perform the connection and commands on a single form by allowing the user to read and write the data on a single form. 
    what i want to do is to create a main form that executes the commands needed to activate the event or allows the user to use the device w/o using the software. with the use of text box and button, while the read executes automatically if the card is swipe
    to it end fill out the focus textbox given.
    i have here a document that discuss commands for the device and i think it is needed to successfully connect all the process from device to the system
    can you help me to do this project? tnx.. :)

    Hi,
    Welcome to MSDN.
    I am afraid that this is not the proper forum for this issue, since each  Magnetic Card Reader writer has its API for developers.
    You could consider getting supports by connecting with the publisher of that Magnetic Card Reader writer which should have the sample about using its API.
    In addition, I did a research, you could refer to
    Build a .NET Class for Serial Device Communications with P/Invoke to get how to communicate with that serial device.
    Thanks for your understanding.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to create a form with the Designer Peopletools

    Help friends of the forum:
    Any page of examples of how to create forms with the tool in PeopleSoft Application Designer

    http://www.oracle.com/technology/documentation/psftent.html
    Down Peopletools 8.xx PeopleBooks and look at the PeopleSoft Application Designer
    It walks you through the whole Process

  • How to create web applications with the LabVIEW web server

    Wonderful Forum,
    I've noticed that sometimes it can be tricky for LabVIEW users to learn how to create their own custom web clients using the LabVIEW web server. I created a LabVIEW web development community group and wrote some tutorials to teach the basics of creating web clients using HTML, Javascript, and AJAX. The idea is that LabVIEW users without any web background can quickly look at some tutorials and examples to get started on their own projects.
    https://decibel.ni.com/content/groups/web-services
    What do you think?
    Joey S.
    Software Product Manager
    National Instruments

    Hi Joey,
    A great idea! I recently presented at a local user group meeting about my WebSockets API (see the links in my signature). I've uploaded the presentation and the demo code I gave to our UG here.
    I think the barrier to entry is with needing to know the web languages (e.g. html/css/js) as well as writing your LabVIEW code. I have joined the group and look forward to seeing some interesting content on there! Certainly some demos of using AJAX to make requests to Web Services and do something with the data (e.g. display on a graph) would be a good place to start.
    Certified LabVIEW Architect, Certified TestStand Developer
    NI Days (and A&DF): 2010, 2011, 2013, 2014
    NI Week: 2012, 2014
    Knowledgeable in all things Giant Tetris and WebSockets

  • How to create a circle with text that is transparent

    I am trying to achieve this affect. I want a black circle with text in it but where ever I place the circle the text needs to be transparent and you see through it.
    Any help would be much appreciated.
    I am using Illustrator CC 2014
    Thanks

    I am using CS5.1 but the technique is the same, hope the info below will be of help.
    1. Create circle
    2. Type word - then select Type from the top menu and select Create Outlines (for ease of selection I colour the type)
    3. Select shape and text with the (black arrow) selection tool.
    4. Top menu - Window - scroll down to Pathfinder
    5. Select Divide - then select shape and text again and select the top menu Object and scroll down to Ungroup.
    6. Then select the red parts of the text and delete or another way is to select a part of the text with colour go to top menu and go to Select scroll down to Same and select Fill Colour this will select all the same colour you will want to delete instead of clicking on each part separately and then delete.
    Then save the file as a eps or Ai file etc
    Example below.

  • How to create a CD with the WinXP OS OEM?

    Hi all,
    Recently I bought a Tecra A7 that has WinXP OEM preinstaled. My question is: has Toshiba any tool to create WinXP CD? If not, why so and how can I do it cleanly? I want my PC to make tests and I probably have to format it in future!
    Thank's
    Pedro

    Eldorado, thank's for your reply.
    I can use ghost, yes, but I think I should not have to do it because it makes no sense! First, I bough a computer WITH the Operating System and I must assure that if something happens to my OS I can restore it, WHATEVER it happened; second, if I want to use Ghost, I have to get an unauthorized copy (because I don't have it) and I don't want to do it! As far as I know, the only thing that you can generate a CD copy is the Tools and Drivers CD.
    Of course I could *make* the WinXp with the directories that exist in CD and some freeware. But I think I don't have to do it, it should be done. Do you understand what I mean?
    I have the Restore CD, yes. And the short time I contact with it (only yesterday) I didn't see a way to create Win Xp image.
    It was nice if someone from Toshiba answers my question.
    Thank's.
    Pedro

  • How to create a folder with the name = date (e.g. "20030512") with LV6.0

    hi,
    i want to create folders with the name = date automaticly.
    i found several solutions here, but all in LV6.1. could somebody give me an example in LV6.0 ?
    I tried it with "get date-string" but that date-string has "." in it :-(
    6.1-example :
    here

    Hope this will help!
    ian.f
    Ian F
    Since LabVIEW 5.1... 7.1.1... 2009, 2010
    依恩与LabVIEW
    LVVILIB.blogspot.com
    Attachments:
    folder_create_2003.vi ‏66 KB

  • How to create a FSV with the text groups in spabish and English

    Hi gurus,
    could you help me with a issue. I want to know where i can add the text in english in the groups of the fse2 , because i have tha configuration with spanish text but when i execute the f.01 with the language EN the system do not give text in English. So could you help me?
    best regards!

    I just tried it with our FSV, system language is EN and i executed the report in DE. I could see german texts but not on the FS items.
    I dont know, if that is possible because these are custom texts/input fields from you as compared to the system text converted to the required language on the report header and other layout fields
    If you want the FS items to also show text in 2 languages, i recommend creating another FSV in the alternate language and using it.

  • How to re-create itunes library with the original itunes library files?

    My harddrive was dying so I brought it in to get it replaced. After the replacement was done, my itunes didn't seem to work properly. All my songs are still in the same folders but the library appeared to be corrupted.  I attempted to reimport the itunes xml file but still no good.
    My question: Is there a way to re-generate a brand new itunes library? All my songs are still intact in \music directory.
    Any help appreciated.

    Hi Limnos,
    Thx for the link. I use the http://support.apple.com/kb/HT1589 within your link and re-import the \music folder. Works like magic.

Maybe you are looking for

  • Error in report desigfner

    Hi when i try to inset a query in Report Designer, facing the below error. *Error while loading metadata Check the query and portal settings Java system error: Incomming call is not authorised* where can i check these things and solution pls. Thanks

  • Oracle 11G - Oracle AWR export import Query Statistics.

    I have Oracle 11G, i have seen the sql statements through Historical AWR option from Top Activites in performance tab. Can i export all AWR query statistics from production machine so that i can analyze all logs after importing it. How can i know all

  • Form submit not working even with usage rights enabled

    Hi everyone, I created a form in Acrobat 7 professional (mac version), then used Acrobat 8 (windows version) to enable usage rights. I have the following javascript code attached to a submit button: this.mailForm(true, "[email protected]", "", "", "R

  • How to replace one BC template with another

    I am using an existing BC template and want to change to a new template (same domain) - any thoughts on how to achieve this? Thanks.

  • How can I sort content into a-z of album titles

    Hi Everyone Hope someone out there can help.  I run two libraries on one pc at home, in library one I have the album icon view and I click on "Album" at the top and my albums are organised a to z by album title.  However in library two, I cannot get