This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/blenlib/BLI_jitter_2d.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
436 B
C++
Raw Permalink Normal View History

/* SPDX-License-Identifier: GPL-2.0-or-later
* Copyright 2001-2002 NaN Holding BV. All rights reserved. */
2002-10-12 11:37:38 +00:00
#pragma once
2002-10-12 11:37:38 +00:00
/** \file
* \ingroup bli
*/
#ifdef __cplusplus
extern "C" {
#endif
void BLI_jitter_init(float (*jitarr)[2], int num);
void BLI_jitterate1(float (*jit1)[2], float (*jit2)[2], int num, float radius1);
void BLI_jitterate2(float (*jit1)[2], float (*jit2)[2], int num, float radius2);
2002-10-12 11:37:38 +00:00
#ifdef __cplusplus
}
#endif