Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BLI_blenlib.h « blenlib « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a78a990a2a3a5ec3bff2b48968b1bc7f4f58f0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2001-2002 NaN Holding BV. All rights reserved. */

/** \file
 * \ingroup bli
 *
 * \section aboutbli Blender LIbrary external interface
 *
 * \subsection about About the BLI module
 *
 * This is the external interface of the Blender Library. If you find
 * a call to a BLI function that is not prototyped here, please add a
 * prototype here. The library offers mathematical operations (mainly
 * vector and matrix calculus), an abstraction layer for file i/o,
 * functions for calculating Perlin noise, scan-filling services for
 * triangles, and a system for guarded memory
 * allocation/deallocation. There is also a patch to make MS Windows
 * behave more or less Posix-compliant.
 *
 * \subsection issues Known issues with BLI
 *
 * - blenlib is written in C.
 * - The posix-compliance may move to a separate lib that deals with
 *   platform dependencies. (There are other platform-dependent
 *   fixes as well.)
 * - The file i/o has some redundant code. It should be cleaned.
 *
 * \subsection dependencies Dependencies
 *
 * - The blenlib uses type defines from \ref DNA, and functions from
 * standard libraries.
 */

#pragma once

#include <stdlib.h>

#include "BLI_listbase.h"

#include "BLI_string.h"

#include "BLI_string_utf8.h"

#include "BLI_path_util.h"

#include "BLI_fileops.h"

#include "BLI_rect.h"