You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kev/Drawer/Module/GeoSigmaDraw/CurveEditorCosine.h

37 lines
753 B
C++

#pragma once
#include "CurveEditorBase.h"
namespace NItem
{
/*
* ???????????????????¦¶??????????
*
* ???????
* 1. ???????????¦¶??????????????????????????
* 2. ????????????????????????
* 3. ?????????????????Default?????
*/
class CurveEditorCosine : public CurveEditorBase
{
public:
CurveEditorCosine(CSigmaDoc* pDoc)
: CurveEditorBase(pDoc) {}
virtual ~CurveEditorCosine(void) {}
protected:
// ??????????????????????????
void OnDrawDragPreview() override;
// ???????????????????¦¶???????????????
void OnCalculateDragEffect(CPointList* pList) override;
private:
// ???????????????
double GetPointOffset(double offset); // ??????????
void GetDragPoint(CPoint2D& dp, CPointList& NewPointList, int& begin, int& end);
};
};