Cleanup: Subdiv: Remove common_ prefix
[blender.git] / source / blender / blenlib / BLI_jitter_2d.h
blobc4af141b5bdd7392ae7af4980a956c28e69e3278
1 /* SPDX-FileCopyrightText: 2001-2002 NaN Holding BV. All rights reserved.
3 * SPDX-License-Identifier: GPL-2.0-or-later */
5 #pragma once
7 /** \file
8 * \ingroup bli
9 */
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
15 void BLI_jitter_init(float (*jitarr)[2], int num);
16 void BLI_jitterate1(float (*jit1)[2], float (*jit2)[2], int num, float radius1);
17 void BLI_jitterate2(float (*jit1)[2], float (*jit2)[2], int num, float radius2);
19 #ifdef __cplusplus
21 #endif