How to draw a specific size circle?

I have to make a 7cm diameter in a homework i'm doing in pages, but i can't find a way to make it in this specific size. Can someone tell me the way?
Thanks,
Mateo

As attached.
Perhaps it would be better to learn the ABC of Pages

Similar Messages

  • How can I draw multiple different size circle on the same screen?

    Hi,
    Can you help on this topic? How will I create many shape (do � need array or something)?
    Please help,thank you...

    import java.awt.*;
    public class DrawingWithParameters {
    public static void main(String[] args) {
         DrawingPanel dp = new DrawingPanel();
    Container cp = dp.getContentPane();
         cp.add(dp);
    dp.setBackground(Color.LIGHT_GRAY);
    Graphics g = dp.getGraphics();
    drawCar(g, 10, 30);
    drawCar(g, 150, 10);
    public static void drawCar(Graphics g, int x, int y) {
    g.setColor(Color.BLACK);
    g.fillRect(x, y, 100, 50);
    g.setColor(Color.RED);
    g.fillOval(x + 10, y + 40, 20, 20);
    g.fillOval(x + 70, y + 40, 20, 20);
    g.setColor(Color.CYAN);
    g.fillRect(x + 70, y + 10, 30, 20);
    Why "DrawingPanel" gives warning?
    Warning: DrawingPanel cannot be resolved to a type
    I tried many basic codes with DrawingPanel but it doesn't work.I just only want to draw many different size circles.

  • Create a specific size circle or rectangle

    How can I create a specific size circle?
    I know how to create a circle and then size it using the rulers but isn't there some way to create the circle to a specific size right from the start?

    > Phos±four dots - 8:24am Jun 14, 08 PST (#1 of 1)
    >You can do it with the Marquee tools or with the Custom Shape Tools.
    > Explore the drop-down menu and settings in the Options Bar for either tool.
    > Hint: "Fixed Size".
    Gack.... of course.... sorry about the line noise.

  • How to know the specific size of a field in oracle table

    Hello,
    oracle 11.2.0.3 on redhat
    i have three tables with same structure, table0, table50, table100:
    create table table0 (id number, shipment RAW(2000), options RAW(2000));
    i inserted 10000 rows in each but with some differences:
    table0 has 10000 id, but shipment and options has null values
    table50 has 10000 id, but shipment and options has only 5000 rows, the other 5000 are null values
    table100 has 10000 rows of id, shipment and options. No null values.
    I want to know the specific size of each column, also the size of each row, to know the exactly size of the field.
    for example:
    row 1, column options of table100 has "asdfasdfagasdgasbabsdgoasdpgiahnwe1129u412094u12"
    row 2, column options of table100 has "a".
    both are raw datatype, but i think its space will has different size (bytes), how to know it? any query?
    I found this query:
    select owner,tablespace_name,segment_name,sum((bytes/1024/1024)) Bytes
    from sys.dba_extents
    where owner in 'MAA' and segment_type='TABLE' and segment_name ='TABLE00'
    group by tablespace_name,owner,segment_name
    order by owner,tablespace_name,segment_name, bytes; but i think it isn't my solution.

    thx mr. sb92075
    i tried with vsize too but same result:
    with table50
    SELECT VSIZE(OPTIONS) FROM TABLE00;
    VSIZE(OPTIONS)
                 1000
                 1000
                 1000
                 1000
                   *with table100
    SELECT VSIZE(OPTIONS) FROM TABLE100;
    VSIZE(C_ELECCION)
                 2000
                 2000
                 2000
                 2000
                      *it's the same size for 'a' like 'abcasdfjañldngaosnbaposnbpaosuqroiwejrklasndiaoshbaposdjgajs'?? It's hard for me to believe.
    data is saved in blocks, a extents is a contiguos number of blocks and a group of extensions are segments. If you insert some text in a table field, Oracle create a extension and insert there the data but depend the bytes you insert Oracle will create one or more extents. How to know this specific space in that field?

  • How to generate a specific size txt file?

    Hey guys,
    I'm working with a system wich reads txt files. These files have to be 100kb of size.
    Is it possible to generate specific size txt files in abap? I'm trying to do this but i cant get exactly 100kb.
    Best regards

    [Character Streams|http://java.sun.com/docs/books/tutorial/essential/io/charstreams.html]

  • How to crop & print specific sizes in Aperture

    I have a project I am working on where I need to make a series of prints that are flush-mounted onto boards that are 2.25"x5". I want to take images from my Aperture library, crop the long and skinny portion from them them, and print them out on my Inkjet printer (single prints on 4x6's on my Canon 6220 for tests, but I am going to want to print multiple-up prints on 5x7 paper once I get going as I need 10-20 copies of each print). I started by cropping (using the Custom feature) and then using a 4x6 preset in the printer dialog with the image size set to 2.25x5. I, of course, have run into the issue that the crop tool does not crop by inches, but rather pixels, and only in certain aspect ratios. I have tried making an export preset, as some suggested, but that only works if the image is the right size to begin with. By chance, some of my prints are exactly the right size, but mostly they are a bit short or wide...
    How do I make a template or crop guide so that I can crop-out the portion of my image that I want, keeping it in the correct aspect of 2.25x5, and then print it out at the exact size? And then how will I do this as a multiple print job on a single piece of 5x7 paper? Do I need to figure out how many pixels a 2.25x5 print will be? Can I set a custom aspect somehow? I know in PS there is the ability to set the "canvas Size" and work the image into that, but I don't have PS on this machine. I have Pages to work with as well, but no Illustrator or InDesign apps or skills. Ideas?
    Thanks!

    If you select Do not constrain or Custom in the crop tool you can set the crop to any aspect ratio you like. You can either drag the box or enter your dimensions in the tool. Note it won't take decimal points in the dimension boxes so in your case enter 500x225
    The crop tool only reports MP because inches would make no sense here. The image could be exported and printed at any size the crop tool only sets the aspect ration of the image.

  • Set specific size for JTextfield/Jbutton in BorderLayout?

    can some one tell me how to set a specific size for JTextfield/JButton in Border/BoxLayout please?
    I stried setSize, setPrefersize, setMAxsize, setMinsize, setBounds... but it won't work?
    For example. If I add a jbutton to a jpanel, which has borderlayout, it will take up ALL the space in that jpanel.
    Thanks

    Typically you use a BorderLayout for the high level layout and then add panels using other layouts to the BorderLayout. So for example on a simple dialog that is using a form that asks your for your first name and last name you would build a panel with those fields and add that panel to the center of the BorderLayout. Then you would create another panel for the "Ok" and "Cancel" buttons which would typically use a FlowLayout. Then you add that panel to the South of the BorderLayout.
    The Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/layout/visual.html]How to Use LayoutManagers has all the information you need to know on using layout managers.

  • Can you define a specific size of a Drawing Markup rectangle?

    Hi all,
    I am using Acrobat X and have been asked to find an answer to a 'problem' someone is having.
    If you have a site plan of one's property and they submit it to me for comment (as a pdf file) can I draw a box to a specific size? Say I set the 'scale ratio' to what the drawing scale is, I go to 'comments' and from the 'Drawing Markups' pane I choose 'draw rectangle; square', I then draw a rectangle to represent a shed of a specific size. I can dimension how far the rectangle/shed is to be from the property lines and I can dimension the rectangle/shed but I have to play with stretching it to get it to my desired size based on the scale I set.
    My question; is there anyway, when I am drawing the box, to either specify an x by y size or see the lenghts of their sides once I pick a corner and start to drag the box to the other corner?
    If not, would there be a java script that could accomplish this task?
    Any help would be appreciated.
    Thanks in advance.
    Paul

    Thanks Sabian, I understand that Acrobat is not a vector drawing application and I have been using all those programs (illustrator, AutoCAD, CorelDRAW etc.) for the past 20+ years. It wouldn't seem too much to ask considering that I can set a scale to my page (in Acrobat) and I can get Acrobat to give me a dimension from point A to point B based on that said scale, so why couldn't I expect to put a rectangle markup based on that same scale?
    As for the right tool? We are a municipality that is trying to make it easier for the public to submit applications online. Those submissions are in the format of a PDF because it is unrealistic to assume the everyone in the public has access to or can afford a program like AutoCAD or illustrator. Likewise it is too COSTLY to have everyone in the city have say 'AutoCAD' or even 'illustrator' to view the application documents to markup and send back.
    I believe  In 1991, Adobe Systems co-founder John Warnock outlined a system called "Camelot"[3] that evolved into PDF (from Wikipedia) and it was a way to have an independent viewing format regardless of what software application created it. I truly believe that Acrobat for what it's initial intent was that it should incorporate some of these features as it only makes sense in an evolutionary sense. Not to be a 'drawing package' but in it's markup/comments palette to expand on them.
    So keep your comments to 'no at this time acrobat does not allow this type of functionality but who knows in the future' and don't treat me as though I don't know anything about anything. In my decades of using these applications I have seen them evolve to include more functions and do more then when the product was originally released.
    I will now go on and recommend that they seriously look at Bluebeam Revu as it is not only cheaper but it has a ton more functionality specifically designed for the needs as listed above working with PDF's (and bitmap images to boot). I was just wanting to cover all bases and give all programs a fair look.
    Thanks again for your intuitive insight.
    Paul

  • How do I print multiple items of a specific size on one sheet of A4 using photoshop elements 12?

    HI
    I have a small sublimation business whereby I print photo's onto small personalised gifts such as mugs, phone covers fridge magnets. I print out the images to fit the size of the gift i.e. a phone cover or mug the images are a specific size.
    Often I want to print multiple items onto one page each with a customised size as the paper is expensive and I need to make the most of every sheet. I can't figure out how to do this in photoshop elements 12  can anyone help / advise?I am using windows XP
    Thanks Lynsey

    You have a much better chance to get a useful reply if you ask in the Photoshop Elements forum.

  • How to resize a .jpg to a specific size, and save in new location

    Basicly what im doing is placing an image that the user has into a database, turning it into a specific size. They are all going to be .jpg files from begining to end. The user gives the location of the image, and i would like the image resized to a fixed size, 260x120, and then save that image into a directory already created, and save as a .jpg . How would I go about doing this?? any help would be appreciated.
    Thanks,
    Mark

    In addition to Irene's solution (that I believe require the Vision toolkit) the is also the G-Toolbox that will do this without Vision. I think Georege Zou sell a license for less that $50.
    I may have heard this is built into LV7 but I am not sure (I am still finishing off an app in 6.1, so I have not opened that box yet).
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to create a String with a specific size?

    how to create a String with a specific size?
    For example I want to create different Strings with the size of 100 , 1000 or 63k byte?

    String are immutable so just initialize it with the number of characters you want.
    You might want to look at java.lang.StringBuffer and see if that's what you want.

  • Last question for today - how to draw with API circle of N pixels radius

    Hi,
    While I'm bit of exhausted while fighting with those paths movement (see my other thread in this forum) - I'd like to ask maybe someone has code snippet, which shows how to draw a circle of N pixels/N mm/inches radius?
    There is one helper function for that inside SDK samples:
    PDEPath DrawCurve(ASFixed x, ASFixed y, ASFixed x1, ASFixed y1, ASFixed x2, ASFixed y2, ASFixed x3, ASFixed y3, int lineWidth, int r, int g, int b)
    but I'm just out of my mind for today what parameters should be provided and how many calls of it I should write.
    Any help would be appreciated.

    You call it four times...
    Here is a snippet that explains the math...
    /* 4/3 * (1-cos 45)/sin 45 = 4/3 * sqrt(2) - 1 */
    #define ARC_MAGIC ((ASFixed) 0.552284749)
    #define PI ((ASFixed)3.141592654)
    void DrawCircle( ASFixed inCenterX, ASFixed inCenterY, ASFixed inRadius )
    /* draw four Bezier curves to approximate a circle */
    MoveTo( inCenterX + inRadius, inCenterY );
    CurveTo( inCenterX + inRadius, inCenterY + inRadius*ARC_MAGIC,
    inCenterX + inRadius*ARC_MAGIC, inCenterY + inRadius,
    inCenterX, inCenterY + inRadius );
    CurveTo( inCenterX - inRadius*ARC_MAGIC, inCenterY + inRadius,
    inCenterX - inRadius, inCenterY + inRadius*ARC_MAGIC,
    inCenterX - inRadius, inCenterY );
    CurveTo( inCenterX - inRadius, inCenterY - inRadius*ARC_MAGIC,
    inCenterX - inRadius*ARC_MAGIC, inCenterY - inRadius,
    inCenterX, inCenterY - inRadius );
    CurveTo( inCenterX + inRadius*ARC_MAGIC, inCenterY - inRadius,
    inCenterX + inRadius, inCenterY - inRadius*ARC_MAGIC,
    inCenterX + inRadius, inCenterY );
    Close();

  • How to draw a perfect circle and how to make sure it is perfectly centered inside a square

    How to draw a perfect circle and how to make sure it is perfectly centered inside a square in Photoshop elements using the Ellipse option.

    1. Create a square canvas.
    2. With the Elipse tool, hold down Shift (Shift forces a circle). Draw the circle anywhere on the canvas (Shape 1 in this example).
    3. Simplify the circle layer
    4. Ctrl-click the layer to select the circle.
    5. Copy the selection to the clipboard (Edit > Copy).
    6. Deselect the selection.
    7. Paste from the clipboard (Edit > Paste). The pasted circle (Layer 1) will be centered.
    8. Delete the original circle layer.
    NOTE: Step 6 is the key. This guarantees that the pasted circle will be centered.
    If you want a circle completely within a square you can simply draw and simplify a circle on any shape canvas. Ctlrl-click the circle to to select it and copy to the clipboard.
    Then do File > New from Clipboard. This creates the circle cropped to a square on transparent background.

  • I have suddenly lost the brush size circle. How do I get it back?

    I have suddenly lost the brush size circle. How do I get it back?

    Is your caps lock on?
    If so, turn it off.

  • How to enter a specific view size

    I'm brain dead for some reason. Where do you type in a value if you need to see the page a specific size? I want to view at 137% which I think is equal to actual size. I know if CS4 it was at bottom left but I can't find it in 5.

    Here you go:
    Bob

Maybe you are looking for

  • P965 Platinum FSB is temperature dependent.

    After much testing with both the kentsfield and conroe and various video cards, cases, coolers, etc. I've come to the conclusion that the max FSB on this board is heavily dependent on temperature. In a cool case with a midrange video card I had no pr

  • Check Box in PI sheet

    Hi Gurus, I'm buiding PI sheets and I would like to know if is possible to manage some checks box in the process instructions ? For instance I have 3 cleaning tasks to execute, I know how to display them on pi sheet, but I also would like to add a ch

  • Do you guys experience white lines appear on your xperia Z3 screen?

    Do you guys experience white lines appear on your  xperia Z3 screen?

  • Font problems with dreamweaver on Mac

    Hi, i installed dreamweaver cs3 as a part of web premium suite on intel mac os x 10.4.10. My international settings are set to Turkish. There are some oddities with fonts. Dreamweaver font list displays some fonts with CE suffix (Helvetica CE, Lucida

  • Unable to Attach file for list item using SP.File CopyTo Method

    Requirement: I have a document library and list, the requirement is i need to take a document from document library and attach to list item in the list using CSOM only. Followed technique: to achieve this requirement i followed below methodology clie