Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

PathInterpolator

The PathInterpolator element provides a way to manually animate along a path. More...

Inherits QtObject

Properties

Detailed Description

PathInterpolator provides x, y, and angle information for a particular progress along a path.

In the following example, we animate a green rectangle along a bezier path.

 import QtQuick 2.0

 Rectangle {
     width: 400
     height: 400

     PathInterpolator {
         id: motionPath

         path: Path {
             startX: 0; startY: 0

             PathCubic {
                 x: 350; y: 350

                 control1X: 350; control1Y: 0
                 control2X: 0; control2Y: 350
             }
         }

         NumberAnimation on progress { from: 0; to: 1; duration: 2000 }
     }

     Rectangle {
         width: 50; height: 50
         color: "green"

         //bind our attributes to follow the path as progress changes
         x: motionPath.x
         y: motionPath.y
         rotation: motionPath.angle
     }
 }

Property Documentation

read-onlyangle : real

This property holds the angle of the path tangent at progress.

Angles are reported clockwise, with zero degrees at the 3 o'clock position.


path : Path

This property holds the path to interpolate.

For more information on defining a path see the Path documentation.


progress : real

This property holds the current progress along the path.

Typical usage of PathInterpolator is to set the progress (often via a NumberAnimation), and read the corresponding values for x, y, and angle (often via bindings to these values).

Progress ranges from 0.0 to 1.0.


read-onlyx : real

read-onlyy : real

These properties hold the position of the path at progress.


Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 5.0-snapshot
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web