This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/freestyle/intern/stroke/ContextFunctions.h
Tamito Kajiyama 1674a04488 Freestyle: removed unused *_EXPORT qualifiers for building Windows DLLs.
These qualifiers were leftovers of the stand alone Freestyle program and not used
(set to an empty string) in Blender for years.
2014-04-17 14:37:13 +09:00

114 lines
3.6 KiB
C++

/*
* ***** BEGIN GPL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* ***** END GPL LICENSE BLOCK *****
*/
#ifndef __FREESTYLE_CONTEXT_FUNCTIONS_H__
#define __FREESTYLE_CONTEXT_FUNCTIONS_H__
/** \file blender/freestyle/intern/stroke/ContextFunctions.h
* \ingroup freestyle
* \brief Functions related to context queries
* \brief Interface to access the context related information.
* \author Stephane Grabli
* \date 20/12/2003
*/
#include "Canvas.h"
#include "../image/GaussianFilter.h"
#include "../image/Image.h"
namespace Freestyle {
//
// Context Functions definitions
//
///////////////////////////////////////////////////////////
/*! namespace containing all the Context related functions */
namespace ContextFunctions {
// GetTimeStamp
/*! Returns the system time stamp */
unsigned GetTimeStampCF();
// GetCanvasWidth
/*! Returns the canvas width */
unsigned GetCanvasWidthCF();
// GetCanvasHeight
/*! Returns the canvas height */
unsigned GetCanvasHeightCF();
// GetBorder
/*! Returns the border */
BBox<Vec2i> GetBorderCF();
// Load map
/*! Loads an image map for further reading */
void LoadMapCF(const char *iFileName, const char *iMapName, unsigned iNbLevels = 4, float iSigma = 1.0f);
// ReadMapPixel
/*! Reads a pixel in a user-defined map
* \return the floating value stored for that pixel
* \param iMapName
* The name of the map
* \param level
* The level of the pyramid in which we wish to read the pixel
* \param x
* The x-coordinate of the pixel we wish to read. The origin is in the lower-left corner.
* \param y
* The y-coordinate of the pixel we wish to read. The origin is in the lower-left corner.
*/
float ReadMapPixelCF(const char *iMapName, int level, unsigned x, unsigned y);
// ReadCompleteViewMapPixel
/*! Reads a pixel in the complete view map
* \return the floating value stored for that pixel
* \param level
* The level of the pyramid in which we wish to read the pixel
* \param x
* The x-coordinate of the pixel we wish to read. The origin is in the lower-left corner.
* \param y
* The y-coordinate of the pixel we wish to read. The origin is in the lower-left corner.
*/
float ReadCompleteViewMapPixelCF(int level, unsigned x, unsigned y);
// ReadOrientedViewMapPixel
/*! Reads a pixel in one of the oriented view map images
* \return the floating value stored for that pixel
* \param iOrientation
* The number telling which orientation we want to check
* \param level
* The level of the pyramid in which we wish to read the pixel
* \param x
* The x-coordinate of the pixel we wish to read. The origin is in the lower-left corner.
* \param y
* The y-coordinate of the pixel we wish to read. The origin is in the lower-left corner.
*/
float ReadDirectionalViewMapPixelCF(int iOrientation, int level, unsigned x, unsigned y);
// DEBUG
FEdge *GetSelectedFEdgeCF();
} // end of namespace ContextFunctions
} /* namespace Freestyle */
#endif // __FREESTYLE_CONTEXT_FUNCTIONS_H__