From 189218640cc06f11c133fec35b6da5048bcdcab9 Mon Sep 17 00:00:00 2001 From: Adeel Kazmi Date: Wed, 23 May 2018 12:23:33 +0100 Subject: [PATCH] Fixed SVACE errors Change-Id: I74b50733423028dfd88507b1f69dc45d9d69739c --- examples/bezier-curve/bezier-curve-example.cpp | 31 +++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/examples/bezier-curve/bezier-curve-example.cpp b/examples/bezier-curve/bezier-curve-example.cpp index b83021d..459f3bb 100644 --- a/examples/bezier-curve/bezier-curve-example.cpp +++ b/examples/bezier-curve/bezier-curve-example.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2018 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -106,8 +106,33 @@ public: BezierCurveExample( Application& application ) : mApplication( application ), - mDuration(2.0f), - mGoingRight(true) + mControlPoint1(), + mControlPoint2(), + mControlLine1(), + mControlLine2(), + mAnimIcon1(), + mAnimIcon2(), + mDragActor(), + mCurve(), + mCoefficientLabel(), + mContentLayer(), + mGrid(), + mTimer(), + mDragAnimation(), + mBezierAnimation(), + mCurveVertices(), + mLine1Vertices(), + mLine2Vertices(), + mRelativeDragPoint(), + mLastControlPointPosition1(), + mLastControlPointPosition2(), + mPositionFactorIndex(), + mDuration( 2.0f ), + mControlPoint1Id( 0.0f ), + mControlPoint2Id( 0.0f ), + mControlPointScale( 0.5f ), + mControlPointZoomScale( mControlPointScale * 2.0 ), + mGoingRight( true ) { // Connect to the Application's Init signal mApplication.InitSignal().Connect( this, &BezierCurveExample::Create ); -- 2.7.4