Problem in rotating cone

hello
i want to create a cone and let it move from
position to another position and also i want to rotate the cone in the
direction of the second position
i do the move from the position to the second position using
KBRotPosScaleSplinePathInterpolator but i can't rotate the cone head
into the direction of the second point
i use thecode of rotation of objects using transform 3d but it doesn't
work could u help me
this is the code for creating objects and rotating it
for(int i=0;i<count;i++)
Transform3D t3d=new Transform3D();
//t3d.set(new Vector3f(0.0f,0.0f,0.0f));
double rotAngle = calcTurn(new Point3d(pos1), new Point3d(pos0));
System.out.println("rotation angle is "+rotAngle);
TransformGroup tg=new TransformGroup(t3d);
tg.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
tg.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
Cone c = new Cone(0.05f,.1f, redApp);
doRotateY(rotAngle,tg,t3d);
tg.addChild(c);
KBKeyFrame []KKF1;
KKF1=setupLinearKeyFrames(1,0);
Alpha a1=setupAnimationData(i,(5000*i)/10);
createInterpolators(tg,KKF1,a1);
rootBranchGroup.addChild(tg);     
     i calculate the angle between 2 positions using this function
private double calcTurn(Point3d alienLoc, Point3d touristLoc)
/* Calculate the angle to turn the alien around the
   y-axis, so that it is facing towards the tourist.
   This angle is relative to the original orientation
   facing along +z-axis
{  // printTuple(alienLoc, "alienLoc");
   // printTuple(touristLoc, "touristLoc");
   double zDiff = touristLoc.z - alienLoc.z;
   double xDiff = touristLoc.x - alienLoc.x;
   //System.out.println("xDiff: " + df.format(xDiff) +
   //                    "; zDiff: " + df.format(zDiff) );
   double turnAngle = 0.0;   // the angle to rotate the alien
   if (zDiff != 0.0) {
     double angle = Math.atan( xDiff/zDiff);
     // the angle from alienLoc to touristLoc
     // System.out.println("angle: " + df.format(angle));
     if ((xDiff > 0) && (zDiff > 0))    // some redundancy for clarity
       turnAngle = angle;
     else if ((xDiff > 0) && (zDiff < 0))
       turnAngle = Math.PI + angle;    // since angle has neg value
     else if ((xDiff < 0) && (zDiff < 0))
       turnAngle = Math.PI + angle;
     else if ((xDiff < 0) && (zDiff > 0))
       turnAngle = angle;    // since angle has neg value
   else {    // zDiff == 0.0, which is unlikely with doubles
     if (xDiff > 0)
       turnAngle = Math.PI/2;
     else if (xDiff < 0)
       turnAngle = -Math.PI/2;
     else    // alien and sprite at *exact* same place
        turnAngle = 0.0;
   // System.out.println("turnAngle: " + df.format(turnAngle));
   return turnAngle;
} // end of calcAngle()then do rotation by this function
public void doRotateY(double radians,TransformGroup objectTG, Transform3D t3d)
// Rotate the sprite by radians amount around its y-axis
  objectTG.getTransform( t3d );
  //toRot.setIdentity();
  Transform3D toRot=new Transform3D();
  toRot.rotY(radians);   // overwrite previous rotation
  t3d.mul(toRot);
  objectTG.setTransform(t3d);
} // end of doRotateY()

hello
i want to create a cone and let it move from
position to another position and also i want to rotate the cone in the
direction of the second position
i do the move from the position to the second position using
KBRotPosScaleSplinePathInterpolator but i can't rotate the cone head
into the direction of the second point
i use thecode of rotation of objects using transform 3d but it doesn't
work could u help me
this is the code for creating objects and rotating it
for(int i=0;i<count;i++)
Transform3D t3d=new Transform3D();
//t3d.set(new Vector3f(0.0f,0.0f,0.0f));
double rotAngle = calcTurn(new Point3d(pos1), new Point3d(pos0));
System.out.println("rotation angle is "+rotAngle);
TransformGroup tg=new TransformGroup(t3d);
tg.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
tg.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
Cone c = new Cone(0.05f,.1f, redApp);
doRotateY(rotAngle,tg,t3d);
tg.addChild(c);
KBKeyFrame []KKF1;
KKF1=setupLinearKeyFrames(1,0);
Alpha a1=setupAnimationData(i,(5000*i)/10);
createInterpolators(tg,KKF1,a1);
rootBranchGroup.addChild(tg);     
     i calculate the angle between 2 positions using this function
private double calcTurn(Point3d alienLoc, Point3d touristLoc)
/* Calculate the angle to turn the alien around the
   y-axis, so that it is facing towards the tourist.
   This angle is relative to the original orientation
   facing along +z-axis
{  // printTuple(alienLoc, "alienLoc");
   // printTuple(touristLoc, "touristLoc");
   double zDiff = touristLoc.z - alienLoc.z;
   double xDiff = touristLoc.x - alienLoc.x;
   //System.out.println("xDiff: " + df.format(xDiff) +
   //                    "; zDiff: " + df.format(zDiff) );
   double turnAngle = 0.0;   // the angle to rotate the alien
   if (zDiff != 0.0) {
     double angle = Math.atan( xDiff/zDiff);
     // the angle from alienLoc to touristLoc
     // System.out.println("angle: " + df.format(angle));
     if ((xDiff > 0) && (zDiff > 0))    // some redundancy for clarity
       turnAngle = angle;
     else if ((xDiff > 0) && (zDiff < 0))
       turnAngle = Math.PI + angle;    // since angle has neg value
     else if ((xDiff < 0) && (zDiff < 0))
       turnAngle = Math.PI + angle;
     else if ((xDiff < 0) && (zDiff > 0))
       turnAngle = angle;    // since angle has neg value
   else {    // zDiff == 0.0, which is unlikely with doubles
     if (xDiff > 0)
       turnAngle = Math.PI/2;
     else if (xDiff < 0)
       turnAngle = -Math.PI/2;
     else    // alien and sprite at *exact* same place
        turnAngle = 0.0;
   // System.out.println("turnAngle: " + df.format(turnAngle));
   return turnAngle;
} // end of calcAngle()then do rotation by this function
public void doRotateY(double radians,TransformGroup objectTG, Transform3D t3d)
// Rotate the sprite by radians amount around its y-axis
  objectTG.getTransform( t3d );
  //toRot.setIdentity();
  Transform3D toRot=new Transform3D();
  toRot.rotY(radians);   // overwrite previous rotation
  t3d.mul(toRot);
  objectTG.setTransform(t3d);
} // end of doRotateY()

Similar Messages

  • Problem with rotation and landscape mode in iOS 8

    From start of iOS 8 I have got problem with rotation in my iPhone 5S 32GB as well as in my iPad mini retina 32GB. Automatical rotation to landscape mode is not working correctly. For example if you take the phone or tablet to landscape mode in base display and tap to Safari, Mail, Messages, the app will start but stay in normal mode, not landscape. Then you have to back the phone to normal portrait mode and back to landscape and only then the phone do the landscape mode. I have never seen this problem in iOS 7 or older.
    Could you help me anyone with this problem? Or is the problem generally in iOS 8.
    Thanks a lot
    Jakub

    Brian, thanks, but it's not a rotation lock issue - at least not relating to the rotation lock setting. It's just a general use setting. Right now i have my iPhone propped in landscape mode. If I now hit the home button, essentially returning to a portrait setting though my phone is still positioned in landscape, then open any other app that supports landscape, that app WILL NOT orient itself to landscape mode. It will stay in portrait mode. The phone has to be physically oriented to portrait, then back to landscape for the app to register landscape mode properly. This is a glitch, and not a rotation lock issue. it ought to be noted that this was not an issue in iOS 7 or any previous iteration.

  • Problema Illustrator CS4 con Wacom Bamboo Fun

    Hola. Tengo una tableta Wacom Bamboo Fun que hasta el momento funcionaba perfectamente con el Illustrator CS. Hasta que hace unos dias instale el Illustrator CS4 y no reconoce ningun tipo de sensibilidad de presión en los pinceles. He configurado la tabla, actualizado los drivers y nada. No se si tiene que estar activa la opción de aerografo y si es asi, no la encuentro en el nuevo CS4.
    Por favor, ¿alguien puede ayudarme?

    Hola,
    GRACIAS por responder de inmediato, hize lo que me aconsejaste, bajé el ultimo driver de la página para el modelo de wacom que tengo, instalé reinicié, y probe en photoshop cs3 y la primera ves me fue bien lueog cambie de número de pincel y se volvio duro. Me preocupa... ojala me puedas seguir ayudando
    Atentamente,
    Rocio Santos
    T:  992483442
    W: http://cajadepolillas.blogspot.com/
    Date: Mon, 5 Apr 2010 06:07:33 -0600
    From: [email protected]
    To: [email protected]
    Subject: Problema Illustrator CS4 con Wacom Bamboo Fun
    Hola Chiox,
    Te aconsejo leas detalladamente las instrucciones de tu tableta y cómo configurarla correctamente, al perecer funciona, si has logrado que detecte y aplique varias características una vez con los pinceles de Photoshop CS3, dudo que esté defectuosa.
    No hay ninguna incompatibilidad entre las tabletas Wacom y Adobe Photoshop CS3.
    Tienes que instalar un driver que en su última version estará en la web de Wacom, y que instala un panel con opciones que tienes que configurar.
    Luego en Photoshop tendrás que utilizar el panel de Pinceles (F5) y las opciones disponibles, puedes guardar ajustes (presets) para utilizarlas de nuevo posteriormente.
    Photoshop CS4 no es más compatible ni amplia las funciones y posibilidades de uso de los pinceles de Photoshop CS3.
    Lo de instalar el CS4 querría suponer que te refieres a adquirir una licencia legal. En ese caso te aconsejo esperes a ver el anuncio e información que Adobe ofrecerá el próximo 12 de Abril sobre la nueva versión CS5.
    >

  • TENGO UN PROBLEMA DE FACTURACION CON APP STORE

    HOLA A TODOS NECESITO AYUDA. YA QUE NO PUEDO BAJAR NINGUNA APLICACION DEL APP STORE ME MANDA UNA LEYENDA DE PROBLEMAS DE FACTURACION Y YA MATI VARIOS NUMEROS DE TARJETAS Y AUN ASI K PUEDO HACER AYUDA PORFAVOR DE ANTE MANO MUCHAS GRACIAS

    yo también tengo ese problema, cuando intento descargar una appp gratis o de pago me dice problemas de facturacion con una compra anterior y no se que hacer

  • Problema di carica con ipod touch 5!

    Salve ho u problema di carica con ipod touch 5. Il problema riguarda l'ipod
    e non il cavo comprato recentemente all'apple store. Dunque il problema
    riguarda l'attacco dell'ipod. Vorrei sapere il costo di riparazione
    dell'oggetto in questione. Grazie in anticipo!

    Google translate:
    Hello I u charging problem with ipod touch 5. Problem concerns the ipod
    not the cord recently bought the Apple Store. So the problem
    regards the attack on the ipod. I would like to know the cost of repair
    the object in question. Thanks in advance!
    - See:    
    iPod touch: Hardware troubleshooting
    iPhone and iPod touch: Charging the battery
    - Try another cable. The cable for 5G iPod (lightning connector) seems to be more prone to failure than the older cable.
    - If a 5G iPod
    Iphone 5 lightning port charging problem - SOLUTION!
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    If not covered by warranty
    Apple will exchange your iPod for a refurbished one for this price. They do not fix yours. Make sure yo select your country
      Apple - iPod Repair price                             

  • Impossibile effettuare l'accesso a causa di un problema di comunicazione con iCloud.

    Impossibile effettuare l'accesso a causa di un problema di comunicazione con iCloud. Non riconosce ID apple e password

    Ciao, anche io avevo lo stesso problema e la causa è la connesione internet fornita dalla vodafone attraverso connessione hspa (traffico dati mobile). Leggendo un pò le varie discussioni l'unica soluzione che si possa considerare tale è questa:
    1- scarica e installa l'applicazione hotspot shield (io ho preso il free)(nel sito ti spiega il suo preciso funzionamento cmq ti crea al volo una connessione vpn senza che tu debba impostare nulla sul mac)
    2-una volta installata avvia l'aplicazione (ti apre il browser di default)
    3- apri il mac app store e tutto funzionerà perfettamente (almeno me lo auguro per te )

  • Problem with rotation and keyboard click sound

    Ok, there's still a problem with the rotation and keyboard click sound and I thought I had the problem fixed.
    It's a serious bug when you want the keyboard click sound enbabled without having the rotation locked. I noticed this bug started when I had the previous iosinstalled 7.0.6.
    Everytime I wanted to enable the keyboard click sound, I have to always go to settings and have lock rotation checked. And it would stay locked.
    If I wanted to rotate my iPad, I have to have mute enabled, but no keyboard click sound.
    I know it sounds confusing. I'm already confused... beh.

    I completely forgot about that.
    Thank you!

  • OBIEE 11g - serious problem when rotating columns into "table prompt" area

    Hi, I'm hitting an OBIEE 11g issue that's causing huge problems on reports. Essentially, the problem is this - if I dump all the columns of a query to a table, everything looks fine. But if I rotate one of the columns into the "table prompts" area, OBIEE is actually resubmitting a WRONG query. The query format changes from:
    WITH
    SAWITH0 AS (select sum(T38965.ORIGINAL_BUDGET) as c1,
    T12637.ORG_ID_DESC as c2
    from
    GL_ANALYTICS.DIM_ACCOUNT T12582,
    GL_ANALYTICS.DIM_ORG T12637,
    GL_ANALYTICS.DIM_ACCOUNTING_PERIOD T12597,
    GL_ANALYTICS.FACT_LEDGER T38965 / FACT_LEDGER_ytd */*
    where  ( T12582.ACCOUNT_KEY = T38965.ACCOUNT_KEY and T12582.STATEMENT_TYPE_CODE = 'Income Statement' and T12597.ACCOUNTING_PERIOD = 11 and T12597.FISCAL_YEAR = T38965.FISCAL_YEAR and T12597.FISCAL_YEAR = 2012 and T12637.ORG_KEY = T38965.ORG_KEY and T38965.FISCAL_YEAR = 2012 and (T12637.DEPARTMENT_CODE_DESC in ('D0200 - Arts Administration', 'D0206 - Film Studies')) and T12597.ACCOUNTING_PERIOD >= T38965.ACCOUNTING_PERIOD )
    group by T12637.ORG_ID_DESC)
    select D1.c1 as c1, D1.c2 as c2, D1.c3 as c3 from ( select distinct 0 as c1,
    D1.c2 as c2,
    D1.c1 as c3
    from
    SAWITH0 D1
    order by c2 ) D1 where rownum <= 65001
    and changes to:
    WITH
    SAWITH0 AS (select distinct T12637.ORG_ID_DESC as c1
    from
    GL_ANALYTICS.DIM_ACCOUNT T12582,
    GL_ANALYTICS.DIM_ORG T12637,
    GL_ANALYTICS.DIM_ACCOUNTING_PERIOD T12597,
    GL_ANALYTICS.FACT_LEDGER T38927 / FACT_LEDGER_period */*
    where  ( T12582.ACCOUNT_KEY = T38927.ACCOUNT_KEY and T12597.ACCOUNTING_PERIOD = T38927.ACCOUNTING_PERIOD and T12597.FISCAL_YEAR = T38927.FISCAL_YEAR and T12582.STATEMENT_TYPE_CODE = 'Income Statement' and T12597.ACCOUNTING_PERIOD = 11 and T12597.FISCAL_YEAR = 2012 and T12637.ORG_KEY = T38927.ORG_KEY and T38927.ACCOUNTING_PERIOD = 11 and T38927.FISCAL_YEAR = 2012 and (T12637.DEPARTMENT_CODE_DESC in ('D0200 - Arts Administration', 'D0206 - Film Studies')) ) ),
    SAWITH1 AS (select sum(T38965.ORIGINAL_BUDGET) as c1,
    T12637.ORG_ID_DESC as c2
    from
    GL_ANALYTICS.DIM_ACCOUNT T12582,
    GL_ANALYTICS.DIM_ORG T12637,
    GL_ANALYTICS.DIM_ACCOUNTING_PERIOD T12597,
    GL_ANALYTICS.FACT_LEDGER T38965 / FACT_LEDGER_ytd */*
    where  ( T12582.ACCOUNT_KEY = T38965.ACCOUNT_KEY and T12582.STATEMENT_TYPE_CODE = 'Income Statement' and T12597.ACCOUNTING_PERIOD = 11 and T12597.FISCAL_YEAR = T38965.FISCAL_YEAR and T12597.FISCAL_YEAR = 2012 and T12637.ORG_KEY = T38965.ORG_KEY and T38965.FISCAL_YEAR = 2012 and (T12637.DEPARTMENT_CODE_DESC in ('D0200 - Arts Administration', 'D0206 - Film Studies')) and T12597.ACCOUNTING_PERIOD >= T38965.ACCOUNTING_PERIOD )
    group by T12637.ORG_ID_DESC),
    SAWITH2 AS ((select distinct 0 as c1,
    D1.c1 as c2,
    cast(NULL as  DOUBLE PRECISION  ) as c3
    from
    SAWITH0 D1
    union all
    select distinct 1 as c1,
    D1.c2 as c2,
    D1.c1 as c3
    from
    SAWITH1 D1))
    select D1.c1 as c1, D1.c2 as c2, D1.c3 as c3 from ( select D1.c1 as c1,
    D1.c2 as c2,
    D1.c3 as c3
    from
    SAWITH2 D1
    order by c1, c2 ) D1 where rownum <= 65001
    I completely do not understand what is going on here. The second query has a ton of problems. First off, it's doing some type of UNION operation - no idea why it's doing that. And the real problem is that it's unioning results from a different fact table, FACT_LEDGER_period instead of FACT_LEDGER_ytd, which is completely screwing up our results.
    Long and short, I simply don't understand at all why the query should change just from rotating a column up into the table prompt area.
    Any ideas?
    Thanks,
    Scott

    Hi Scott,
    I see the query to be valid with each CTE doing the following Jobs.....
    1. I understand that this particular query is being generated to get the unique "ORG_ID_DESC " to fill up the table prompts.
    SAWITH0 AS (select distinct T12637.ORG_ID_DESC as c1
    from
    GL_ANALYTICS.DIM_ACCOUNT T12582,
    GL_ANALYTICS.DIM_ORG T12637,
    GL_ANALYTICS.DIM_ACCOUNTING_PERIOD T12597,
    GL_ANALYTICS.FACT_LEDGER T38927 / FACT_LEDGER_period /
    where ( T12582.ACCOUNT_KEY = T38927.ACCOUNT_KEY and T12597.ACCOUNTING_PERIOD = T38927.ACCOUNTING_PERIOD and T12597.FISCAL_YEAR = T38927.FISCAL_YEAR and T12582.STATEMENT_TYPE_CODE = 'Income Statement' and T12597.ACCOUNTING_PERIOD = 11 and T12597.FISCAL_YEAR = 2012 and T12637.ORG_KEY = T38927.ORG_KEY and T38927.ACCOUNTING_PERIOD = 11 and T38927.FISCAL_YEAR = 2012 and (T12637.DEPARTMENT_CODE_DESC in ('D0200 - Arts Administration', 'D0206 - Film Studies')) ) )
    2. This particular query is to get each prompt value and its corresponding data
    SAWITH1 AS (select sum(T38965.ORIGINAL_BUDGET) as c1,
    T12637.ORG_ID_DESC as c2
    from
    GL_ANALYTICS.DIM_ACCOUNT T12582,
    GL_ANALYTICS.DIM_ORG T12637,
    GL_ANALYTICS.DIM_ACCOUNTING_PERIOD T12597,
    GL_ANALYTICS.FACT_LEDGER T38965 / FACT_LEDGER_ytd /
    where ( T12582.ACCOUNT_KEY = T38965.ACCOUNT_KEY and T12582.STATEMENT_TYPE_CODE = 'Income Statement' and T12597.ACCOUNTING_PERIOD = 11 and T12597.FISCAL_YEAR = T38965.FISCAL_YEAR and T12597.FISCAL_YEAR = 2012 and T12637.ORG_KEY = T38965.ORG_KEY and T38965.FISCAL_YEAR = 2012 and (T12637.DEPARTMENT_CODE_DESC in ('D0200 - Arts Administration', 'D0206 - Film Studies')) and T12597.ACCOUNTING_PERIOD >= T38965.ACCOUNTING_PERIOD )
    group by T12637.ORG_ID_DESC)
    3. This particular query, I understand is to get the following data (Sample data) relating the prompts and their corresponding data
    column (c1) ;column (c2 ie ORG_ID_DESC); column(C3 ie sum(T38965.ORIGINAL_BUDGET))
    0;               ORG_ID_DESC1; NULL
    1;               ORG_ID_DESC1;10
    0;               ORG_ID_DESC2;NULL
    1;               ORG_ID_DESC2;40
    0;               ORG_ID_DESC3;NULL
    1;               ORG_ID_DESC3;29.8
    SAWITH2 AS ((select distinct 0 as c1,
    D1.c1 as c2,
    cast(NULL as DOUBLE PRECISION ) as c3
    from
    SAWITH0 D1
    union all
    select distinct 1 as c1,
    D1.c2 as c2,
    D1.c1 as c3
    from
    SAWITH1 D1))
    4. The last select statement does nothing but selecting the needed data which later gets arranged in the format as needed by the OBIPS
    select D1.c1 as c1, D1.c2 as c2, D1.c3 as c3 from ( select D1.c1 as c1,
    D1.c2 as c2,
    D1.c3 as c3
    from
    SAWITH2 D1
    order by c1, c2 ) D1 where rownum <= 65001
    Now, on the table being chosen for picking up "ORG_ID_DESC" might be pretty much depending on the best source available as you know. If you would like BI Server to pick up any particular source, probably you could try the "LTS Priority Group" way.
    Hope I was clear and it helps.
    Thank you,
    Dhar

  • Acrobat Pro V8 problem with rotating PDFs

    I have CS3 suite with Acrobat Pro V8.1.2 running on OSX 10.5.4.
    I rotate PDFs for our printer (photographic Lightjet430 laser printer using postershop) it saves time, and it also makes things easier for us in general.
    Now I sometimes rip the PDFs into photoshop, this is where my problem starts.
    If a PDF say 500mm wide X 2000mm high is rotated in Acrobat and re-saved so now 2000w X 500h. If I open this in Photoshop it shows me a preview as 2000wx500h BUT the size is reported as 500w X 2000h. If you then rip this PDF it will rip as 500mm wide X 125mm high (Wrong). The only way around this is to rotate this PDF back to 500w X 2000h then rip again and it will then rip as 500x2000.
    Now if I get this PDF and rotate using OSXs Preview, it will work. I open the PDF that I rotated in Preview and photoshop will show and tell me that it is 2000Wx500H and it rips as 2000x500.
    I have 7 other Macs with the same setup and they all do the same thing. I got a friend on a PC using XP and Acrobat 8.1.2 and it also did the same thing.
    Using another PDF program on his PC made it work.
    Now for some reason the Newer version of PosterShop 7.1 (wasn't a problem with Postershop 6.5) is doing strange things with PDFs rotated in Acrobat Pro V8.1.2. A PDF rotated in Acrobat to a Landscape will open as a Portrait. Leave the PDF as a Portrait and it will open as a Portrait. Now rotate the same file using Preview to a Landscape and Postershop will open it as a Landscape.
    Its like something in the PDF is not being changed to say its rotated, so both Photoshop and postershop get it wrong. Now the problems in Postershop may not be related, but even Photoshop is seeing this and ripping it wrong.
    Is there any thing I could try?
    I have got the rest of the team using Preview atm to rotate files for now.
    Thank you.

    My biggest issue GKaiseril is that this is something developed at a higher level than my department. You can find the Fillable PDF and Excel conversion spreadsheet at : www.dodprocurementtoolbox.com. I am not apart of the development team, just apart of a property team trying to get our attachment right. This has been an ongoing issue we've tried to resolve for a while now. The solution I posted above makes the file work, but I don't know if its a "solution" or a temp fix. If I can figure out what the actual issue is, I can suggest an actual fix to the machine or process.

  • Problem with rotating music iPhone6

    Hello,
      I have one really annoying problem with my iPhone 6. I had it since i bought it and I hoped that with the new iOS 8.2 it's gonna be fixed, but unfortunately it wasn't. The problem is when I listen to music and I rotate my phone into landscape mode the screen becomes black (normally there should be a list of the albums)
    Here I uploaded two pictures of the action. Also I want to say that I am not the only one with that problem, my friend is also having iPhone 6 and he has the same problem. We tried to restart and reset our phones, but nothing happened. I would be really grateful if you could help me to fix that.

    This is a user-to-user technical support forum. This is NOT Apple Customer Support. Use the Contact Us link at the bottom right of every page for information on contacting Apple.
    You will need to take the phone back to the U.S. (or send it to a friend or relative in the U.S) for service.

  • [Solved] Multimonitor compositioning problem with rotated screen

    Hello,
    I have problem with picture compositioning on screen, problem is best described on video, if I rotate second screen situation is same, but roles are flipped.
    https://drive.google.com/file/d/0B0dkWJ … sp=sharing
    My setup:
    Acer 3820tg with Arch stable, catalyst-total from AUR and i3 wm:
    ATI 5650 - only discrete vga
    VGA output: 1280x1024 rotated to left
    HDMI out: 1680x1050
    nomodeset not in kernel line
    I tried both(gpu and display) image scaling
    $ glxinfo
    name of display: :0
    display: :0 screen: 0
    direct rendering: Yes
    server glx vendor string: ATI
    server glx version string: 1.4
    $ fglrxinfo
    display: :0 screen: 0
    OpenGL vendor string: Advanced Micro Devices, Inc.
    OpenGL renderer string: AMD Mobility Radeon HD 5000 Series
    OpenGL version string: 4.4.12874 Compatibility Profile Context 12.104
    Thanks for help.
    Jakub
    Last edited by kubco2 (2014-07-03 18:21:21)

    Out of the box, the fonts will suck.
    Go through the following wiki https://wiki.archlinux.org/index.php/Font_configuration and configure your fonts. You also need to make sure you have a couple good fonts installed. Then setup the hinting, filter etc and it will be much improved.
    I have used Infinality in the past and it works very well as well but made too many changes, one of which resulted in an issue with an app that was difficult to track down. Haven't used it lately so do not know the status.

  • Problema extraño con Mac mini 2011

    Hace 6 meses aproximadamente, compre mi mac mini, a los 2 dias de tenerla empeze a notar los defectos que aparecen en la imagen de muestra, cuadros de colores, las sobras de las ventanas con lineas negras, se ponia muy lenta al trabajar incluso al usar algo tan sencillo como el Text edit.
    Llame a Apple he inmediatamente me mandaron los datos, envié de regreso la mac mini y me enviaron otra nueva, el problema es que a la mac mini nueva que me enviaron le esta pasando lo mismo que a la pasada, aparécen los defectos de colores, en las sombras, se pone muy lenta, etc.
    ¿Alguna sugerencia de como solucionar esto o alguna idea a que se deba?
    Mac mini Intel 2.3 i5, 2G de ram, 500G HD.
    Gracias.

    What happens if you do not press Alt? Does partitioning work properly?
    Can you try these steps, if you get black screen?
    Resetting the System Management Controller (SMC) on your Mac - Apple Support
    How to Reset NVRAM on your Mac - Apple Support

  • Need Help with Problem Batch Rotating Images in iPhoto 8!

    Hello, recently I have been having a lot of problems with pic files becoming unusable once I batch rotate them in iPhoto 8, so now I want to rotate the pictures 180º before I import them into iPhoto. Is there a free program out there that can help me do this without losing any picture quality. I REALLY don't want to have to individually open up over 2000 photos in Preview and individually rotate them that way.
    Does this same batch rotating problem occur in Aperture 1.5.6?
    TIA for ANY and ALL help!!!

    You can create an Automator workflow application to batch rotate a folder of photos 180 degrees. You need to download and install GraphicConverter first. You can use it in the demo mode by first opening it before you drop your folder of photos onto the application .
    When you install GC select the option to install the GC Automator workflows. Open Automator and put in the following elements: 1 - Get Finder Items; 2 - Rotate. You can select to use Quicktime or the internal algorithm. Save it as an application.
    This all must be done outside of iPhoto and then import into iPhoto.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.
    Message was edited by: Old Toad

  • Problem with rotate function.

    I got a problem with the rotate function. When I rotate an (text) object (point text but same behavior with area text) on the GUI of Illustrator, the resize bounds around (see screenshot) is rotated as well so that you can resize it as used to. If I rotate the same object by JavaScript, the resize bounds are NOT rotated along with. How can I get the same effect as with the GUI-way by JavaScript as thats the result I need? And where is my thinking error. Here is the code I used for the rotation:
    var docRef = app.activeDocument;
    var sRef = docRef.selection[0];
    sRef.rotate(20, true, true, true, true, Transformation.TOPLEFT);

    Hi Jens, I had the same problem, no matter what I tried, rotating via scripting keeps resetting the bounding box. I resolved it by recording an action to rotate the object, same results as if rotated manually. If you still need to rotate via scripting, VBS and AppleSript can execute Actions from script, JS can not.

  • Problem with rotate (Win 10)

    For some reason, my Yoga 2 Pro refuses to get back into the 'normal' rotation (NOT upside-down or sideways). I've tried disabling ymg in services (no effect), I've tried with the ctrl-alt combo (all of them work perfectly, EXCEPT for the ctrl-alt-UP combo). - but nothing brings it back in the normal mode. Does somebody have an idea on how to fix this? Thanks.
    Solved!
    Go to Solution.

    Just reporting back. It was a problem with a driver (HID Sensor Collection V2 that (for some reason) was no longer 'enabled'. I noticed it in the device manager, and as soon as I clicked it, the system also showed a 'Sdo Sensor V2' and from that moment onwards, the display switched to the normal mode (landscape, NOT flipped). So problem solved. I hope.

Maybe you are looking for

  • App Error 200

    After installing an uodate to PocketGrapes Digital Wine Diary last night I was prompted for a Restart which I accepted. The Restart gets no further than the white line across the bottom of the Blackberry screen which hangs for about 5 minutes and the

  • J2SE File Sender Adapter Error

    Hi Experts, I am doing a scenario on J2SE. Like this: J2SE File Sender -> XI -> J2SE File Receiver. On File Sender adapter, it has an error, like this "ERROR: Finished sending to Integration Engine with error u201Cjava.io.IOException: invalid content

  • Application saving pdf with .pdf^1 extension

    Our company has an application that saves to .pdf format. However, on one of the user's systems, whenever she saves as .pdf, the default is to save the file with a .pdf^1 extension. Has anyone encountered the ^1 in the file extension? I can't find an

  • HELP!! Can this be even be done?

    I am working on a project that requires some elaborate Flash interactivity. I would like to get your thoughts on whether this will work, if Flash and Captivate are the right tools, etc.. We want to train users on how to fill out a medical form. It re

  • I've transferred my old number to my new iphone 5, but it is still showing the original number in my contacts.  How do I change this?

    I've transferred my old no to my new iphone 5, but it is still showing the original number in my contacts.  How do I change this?