thorvg/src/lib/tvgCommon.h
Hermet Park 9b8ab42e54 common shape: support path appending
it's usage may require a little handy but
The path data is very low manipulated, its usage may require a little handy,
but appedingPath() is designed for performance.

Also added testPath.

Change-Id: Ifd929d48506926e3f529198c0b40ee8f922835d4
2020-04-30 18:33:01 +09:00

32 lines
936 B
C++

/*
* Copyright (c) 2020 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifndef _TVG_COMMON_H_
#define _TVG_COMMON_H_
#include <iostream>
#include <cassert>
#include <vector>
#include <math.h>
#include <float.h>
#include <string.h>
#include "tizenvg.h"
#include "tvgRenderCommon.h"
using namespace std;
using namespace tvg;
#endif //_TVG_COMMON_H_