SDXFrameWork  0.13
SDXFrameWork
 All Classes Namespaces Functions Variables Enumerations Enumerator Pages
Public Member Functions | List of all members
SDX::SPEED::Accel Class Reference

加速する. More...

#include <Speed.h>

Inherits SDX::SPEED::ISpeed.

Public Member Functions

 Accel (double 初速, double 加速度)
 初速と加速度を指定. More...
 
double Get () const override
 現在の速度を取得. More...
 
double Update () override
 速度を更新. More...
 

Detailed Description

加速する.

//Copyright © 2014 SDXFramework
//[License]GNU Affero General Public License, version 3
//[Contact]http://sourceforge.jp/projects/dxframework/
//速度オブジェクトを使う
#include <SDXFramework.h>
bool SampleSpeed()
{
using namespace SDX;
System::Initialise("sample", 640, 480);
//位置と形を持った型
std::vector<std::shared_ptr<IShape>> shapes;
shapes.emplace_back(new Circle(0, 50, 10));
shapes.emplace_back(new Rect(0, 150, 20, 20));
shapes.emplace_back(new Line(0, 250, PAI / 2, 20, 5));
//変化する数値を表す型
std::vector<std::shared_ptr<SPEED::ISpeed>> speeds;
speeds.emplace_back(new SPEED::Liner(1));//等速
speeds.emplace_back(new SPEED::Accel(0, 0.01));//加速する
speeds.emplace_back(new SPEED::Wave(2, 0.1, 0));//平均√2で進む
while (System::Update())
{
for (int a = 0; a < 3; ++a)
{
//速度を更新する
speeds[a]->Update();
//図形を移動させる
shapes[a]->MoveA(speeds[a]->Get(), 0);
//描画する
shapes[a]->Draw(Color::White);
}
if (Input::key.Return.on){ break;}//Enterで終了
}
return true;
}

Constructor & Destructor Documentation

SDX::SPEED::Accel::Accel ( double  初速,
double  加速度 
)
inline

初速と加速度を指定.

Member Function Documentation

double SDX::SPEED::Accel::Get ( ) const
inlineoverridevirtual

現在の速度を取得.

Implements SDX::SPEED::ISpeed.

double SDX::SPEED::Accel::Update ( )
inlineoverridevirtual

速度を更新.

Implements SDX::SPEED::ISpeed.