summaryrefslogtreecommitdiffstats
path: root/src/animation
diff options
context:
space:
mode:
authorPaul Wicking <paul.wicking@qt.io>2018-06-18 13:23:13 +0200
committerPaul Wicking <paul.wicking@qt.io>2018-06-19 10:03:23 +0000
commit809c753359a6a6c5773b0494a46b1d82f3965db6 (patch)
tree764799cb91d0909cb61ae119a9b6e4e00bfdd05a /src/animation
parentbc544df60c1bf23df63df6ab8a017c7861319930 (diff)
Doc: Add missing dots (qt3d)
Task-number: QTBUG-68933 Change-Id: I4226b8b9d70548b6921948c5ea47520f40f5df98 Reviewed-by: Topi Reiniƶ <topi.reinio@qt.io>
Diffstat (limited to 'src/animation')
-rw-r--r--src/animation/frontend/qabstractanimation.cpp4
-rw-r--r--src/animation/frontend/qanimationclip.cpp2
-rw-r--r--src/animation/frontend/qanimationclipdata.cpp2
-rw-r--r--src/animation/frontend/qanimationcliploader.cpp2
-rw-r--r--src/animation/frontend/qanimationcontroller.cpp4
-rw-r--r--src/animation/frontend/qanimationgroup.cpp4
-rw-r--r--src/animation/frontend/qchannelmapper.cpp2
-rw-r--r--src/animation/frontend/qchannelmapping.cpp2
-rw-r--r--src/animation/frontend/qclipblendnodecreatedchange.cpp2
-rw-r--r--src/animation/frontend/qkeyframeanimation.cpp4
-rw-r--r--src/animation/frontend/qlerpclipblend.cpp2
-rw-r--r--src/animation/frontend/qmorphinganimation.cpp4
-rw-r--r--src/animation/frontend/qmorphtarget.cpp4
-rw-r--r--src/animation/frontend/qvertexblendanimation.cpp4
14 files changed, 21 insertions, 21 deletions
diff --git a/src/animation/frontend/qabstractanimation.cpp b/src/animation/frontend/qabstractanimation.cpp
index efac3f5ec..e541af011 100644
--- a/src/animation/frontend/qabstractanimation.cpp
+++ b/src/animation/frontend/qabstractanimation.cpp
@@ -43,7 +43,7 @@ namespace Qt3DAnimation {
/*!
\class Qt3DAnimation::QAbstractAnimation
- \brief An abstract base class for Qt3D animations
+ \brief An abstract base class for Qt3D animations.
\inmodule Qt3DAnimation
\since 5.9
\inherits QObject
@@ -57,7 +57,7 @@ namespace Qt3DAnimation {
/*!
\qmltype AbstractAnimation
- \brief An abstract base type for Qt3D animations
+ \brief An abstract base type for Qt3D animations.
\inqmlmodule Qt3D.Animation
\since 5.9
\instantiates Qt3DAnimation::QAbstractAnimation
diff --git a/src/animation/frontend/qanimationclip.cpp b/src/animation/frontend/qanimationclip.cpp
index 2b04ce1ea..d624a246a 100644
--- a/src/animation/frontend/qanimationclip.cpp
+++ b/src/animation/frontend/qanimationclip.cpp
@@ -54,7 +54,7 @@ QAnimationClipPrivate::QAnimationClipPrivate()
\class QAnimationClip
\inherits QAbstractAnimationClip
\inmodule Qt3DAnimation
- \brief Specifies key frame animation data
+ \brief Specifies key frame animation data.
*/
QAnimationClip::QAnimationClip(Qt3DCore::QNode *parent)
: QAbstractAnimationClip(*new QAnimationClipPrivate, parent)
diff --git a/src/animation/frontend/qanimationclipdata.cpp b/src/animation/frontend/qanimationclipdata.cpp
index 1dbbe4a30..49de71e79 100644
--- a/src/animation/frontend/qanimationclipdata.cpp
+++ b/src/animation/frontend/qanimationclipdata.cpp
@@ -55,7 +55,7 @@ public:
/*!
\class QAnimationClipData
\inmodule Qt3DAnimation
- \brief Class containing the animation data
+ \brief Class containing the animation data.
*/
QAnimationClipData::QAnimationClipData()
: d(new QAnimationClipDataPrivate)
diff --git a/src/animation/frontend/qanimationcliploader.cpp b/src/animation/frontend/qanimationcliploader.cpp
index f71ca40f7..be23f49a3 100644
--- a/src/animation/frontend/qanimationcliploader.cpp
+++ b/src/animation/frontend/qanimationcliploader.cpp
@@ -83,7 +83,7 @@ void QAnimationClipLoaderPrivate::setStatus(QAnimationClipLoader::Status status)
\class Qt3DAnimation::QAnimationClipLoader
\inherits QAbstractAnimationClip
\inmodule Qt3DAnimation
- \brief Enables loading key frame animation data from a file
+ \brief Enables loading key frame animation data from a file.
*/
QAnimationClipLoader::QAnimationClipLoader(Qt3DCore::QNode *parent)
diff --git a/src/animation/frontend/qanimationcontroller.cpp b/src/animation/frontend/qanimationcontroller.cpp
index d4c3c4005..ddb105d08 100644
--- a/src/animation/frontend/qanimationcontroller.cpp
+++ b/src/animation/frontend/qanimationcontroller.cpp
@@ -45,7 +45,7 @@ namespace Qt3DAnimation {
/*!
\class Qt3DAnimation::QAnimationController
- \brief A controller class for animations
+ \brief A controller class for animations.
\inmodule Qt3DAnimation
\since 5.9
\inherits QObject
@@ -64,7 +64,7 @@ namespace Qt3DAnimation {
/*!
\qmltype AnimationController
- \brief A controller type for animations
+ \brief A controller type for animations.
\inqmlmodule Qt3D.Animation
\since 5.9
\instantiates Qt3DAnimation::QAnimationController
diff --git a/src/animation/frontend/qanimationgroup.cpp b/src/animation/frontend/qanimationgroup.cpp
index 49193834d..84078b4f4 100644
--- a/src/animation/frontend/qanimationgroup.cpp
+++ b/src/animation/frontend/qanimationgroup.cpp
@@ -43,7 +43,7 @@ namespace Qt3DAnimation {
/*!
\class Qt3DAnimation::QAnimationGroup
- \brief A class grouping animations together
+ \brief A class grouping animations together.
\inmodule Qt3DAnimation
\since 5.9
\inherits QObject
@@ -55,7 +55,7 @@ namespace Qt3DAnimation {
*/
/*!
\qmltype AnimationGroup
- \brief A type grouping animations together
+ \brief A type grouping animations together.
\inqmlmodule Qt3D.Animation
\since 5.9
\inherits QObject
diff --git a/src/animation/frontend/qchannelmapper.cpp b/src/animation/frontend/qchannelmapper.cpp
index da0408c3a..82ce5ebbe 100644
--- a/src/animation/frontend/qchannelmapper.cpp
+++ b/src/animation/frontend/qchannelmapper.cpp
@@ -53,7 +53,7 @@ QChannelMapperPrivate::QChannelMapperPrivate()
\class QChannelMapper
\inmodule Qt3DAnimation
\brief Allows to map the channels within the clip onto properties of
- objects in the application
+ objects in the application.
*/
QChannelMapper::QChannelMapper(Qt3DCore::QNode *parent)
diff --git a/src/animation/frontend/qchannelmapping.cpp b/src/animation/frontend/qchannelmapping.cpp
index 722ce24b0..0d9150c50 100644
--- a/src/animation/frontend/qchannelmapping.cpp
+++ b/src/animation/frontend/qchannelmapping.cpp
@@ -114,7 +114,7 @@ void QChannelMappingPrivate::updatePropertyNameAndType()
\inherits Qt3DCore::QNode
\inmodule Qt3DAnimation
\brief Allows to map the channels within the clip onto properties of
- objects in the application
+ objects in the application.
*/
diff --git a/src/animation/frontend/qclipblendnodecreatedchange.cpp b/src/animation/frontend/qclipblendnodecreatedchange.cpp
index 5192e6a01..46079ad59 100644
--- a/src/animation/frontend/qclipblendnodecreatedchange.cpp
+++ b/src/animation/frontend/qclipblendnodecreatedchange.cpp
@@ -52,7 +52,7 @@ QClipBlendNodeCreatedChangeBasePrivate::QClipBlendNodeCreatedChangeBasePrivate(c
\class Qt3DAnimation::QClipBlendNodeCreatedChangeBase
\inherits Qt3DCore::QNodeCreatedChangeBase
\inmodule Qt3DAnimation
- \brief Base class for changes in QClipBlendNode
+ \brief Base class for changes in QClipBlendNode.
*/
QClipBlendNodeCreatedChangeBase::QClipBlendNodeCreatedChangeBase(const QAbstractClipBlendNode *node)
: Qt3DCore::QNodeCreatedChangeBase(*new QClipBlendNodeCreatedChangeBasePrivate(node), node)
diff --git a/src/animation/frontend/qkeyframeanimation.cpp b/src/animation/frontend/qkeyframeanimation.cpp
index 597b34cee..53d48a12b 100644
--- a/src/animation/frontend/qkeyframeanimation.cpp
+++ b/src/animation/frontend/qkeyframeanimation.cpp
@@ -45,7 +45,7 @@ namespace Qt3DAnimation {
/*!
\class Qt3DAnimation::QKeyframeAnimation
- \brief A class implementing simple keyframe animation to a QTransform
+ \brief A class implementing simple keyframe animation to a QTransform.
\inmodule Qt3DAnimation
\since 5.9
\inherits Qt3DAnimation::QAbstractAnimation
@@ -60,7 +60,7 @@ namespace Qt3DAnimation {
/*!
\qmltype KeyframeAnimation
- \brief A type implementing simple keyframe animation to a Transform
+ \brief A type implementing simple keyframe animation to a Transform.
\inqmlmodule Qt3D.Animation
\since 5.9
\inherits AbstractAnimation
diff --git a/src/animation/frontend/qlerpclipblend.cpp b/src/animation/frontend/qlerpclipblend.cpp
index 12f4d7aec..fd9dd248c 100644
--- a/src/animation/frontend/qlerpclipblend.cpp
+++ b/src/animation/frontend/qlerpclipblend.cpp
@@ -48,7 +48,7 @@ namespace Qt3DAnimation {
\inqmlmodule Qt3D.Animation
\brief Performs a linear interpolation of two animation clips based on a
- normalized factor
+ normalized factor.
\since 5.9
diff --git a/src/animation/frontend/qmorphinganimation.cpp b/src/animation/frontend/qmorphinganimation.cpp
index 3824b8d64..c73a6abd7 100644
--- a/src/animation/frontend/qmorphinganimation.cpp
+++ b/src/animation/frontend/qmorphinganimation.cpp
@@ -43,7 +43,7 @@ namespace Qt3DAnimation {
/*!
\class Qt3DAnimation::QMorphingAnimation
- \brief A class implementing blend-shape morphing animation
+ \brief A class implementing blend-shape morphing animation.
\inmodule Qt3DAnimation
\since 5.9
\inherits Qt3DAnimation::QAbstractAnimation
@@ -66,7 +66,7 @@ namespace Qt3DAnimation {
*/
/*!
\qmltype MorphingAnimation
- \brief A type implementing blend-shape morphing animation
+ \brief A type implementing blend-shape morphing animation.
\inqmlmodule Qt3D.Animation
\since 5.9
\inherits AbstractAnimation
diff --git a/src/animation/frontend/qmorphtarget.cpp b/src/animation/frontend/qmorphtarget.cpp
index 3abb3df74..76b1a598e 100644
--- a/src/animation/frontend/qmorphtarget.cpp
+++ b/src/animation/frontend/qmorphtarget.cpp
@@ -43,7 +43,7 @@ namespace Qt3DAnimation {
/*!
\class Qt3DAnimation::QMorphTarget
- \brief A class providing morph targets to blend-shape animation
+ \brief A class providing morph targets to blend-shape animation.
\inmodule Qt3DAnimation
\since 5.9
\inherits QObject
@@ -56,7 +56,7 @@ namespace Qt3DAnimation {
*/
/*!
\qmltype MorphTarget
- \brief A type providing morph targets to blend-shape animation
+ \brief A type providing morph targets to blend-shape animation.
\inqmlmodule Qt3D.Animation
\since 5.9
\inherits QtObject
diff --git a/src/animation/frontend/qvertexblendanimation.cpp b/src/animation/frontend/qvertexblendanimation.cpp
index 3ddd83bf0..25468d4a7 100644
--- a/src/animation/frontend/qvertexblendanimation.cpp
+++ b/src/animation/frontend/qvertexblendanimation.cpp
@@ -44,7 +44,7 @@ namespace Qt3DAnimation {
/*!
\class Qt3DAnimation::QVertexBlendAnimation
- \brief A class implementing vertex-blend morphing animation
+ \brief A class implementing vertex-blend morphing animation.
\inmodule Qt3DAnimation
\since 5.9
\inherits Qt3DAnimation::QAbstractAnimation
@@ -69,7 +69,7 @@ namespace Qt3DAnimation {
*/
/*!
\qmltype VertexBlendAnimation
- \brief A type implementing vertex-blend morphing animation
+ \brief A type implementing vertex-blend morphing animation.
\inqmlmodule Qt3D.Animation
\since 5.9
\inherits AbstractAnimation