mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
36 lines
912 B
C++
36 lines
912 B
C++
#include "stdafx.h"
|
|
|
|
#include "SMathExt.h"
|
|
#include "SScreen.h"
|
|
#include "SPattern.h"
|
|
|
|
//-------------------------------------------------------------------------------------------------------------------------------
|
|
// SPattern
|
|
//-------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
SPattern::SPattern()
|
|
{
|
|
}
|
|
|
|
SPattern::~SPattern()
|
|
{
|
|
}
|
|
|
|
//-------------------------------------------------------------------------------------------------------------------------------
|
|
// SSolidColor
|
|
//-------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
SSolidColor::SSolidColor(SColorPointer pColor)
|
|
{
|
|
ColorCopy( m_pColor, pColor );
|
|
}
|
|
|
|
SSolidColor::~SSolidColor()
|
|
{
|
|
}
|
|
|
|
void SSolidColor::GetColor(int nX, int nY, SColorPointer pColor)
|
|
{
|
|
ColorCopy( pColor, m_pColor );
|
|
}
|