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.
15 lines
290 B
C
15 lines
290 B
C
|
1 month ago
|
#pragma once
|
||
|
|
#include <stdexcept>
|
||
|
|
#include <thread>
|
||
|
|
#include <afxext.h>
|
||
|
|
#include <sstream>
|
||
|
|
#include "DrawModel\\BaseLib.h"
|
||
|
|
#include "DrawOperator\\DrawLib.h"
|
||
|
|
|
||
|
|
class CGridSmooth
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static void ExcuteSmooth(std::shared_ptr<CXy> pXy, CDimension2D *pGrid, double smoothFactor = 1);
|
||
|
|
};
|
||
|
|
|