Refactor: Remove extern "C" from most headers

The only remaining code in source/blender that must be compiled as C
is now datatoc generated code and the DNA defaults that use designated
initializers.

Pull Request: https://projects.blender.org/blender/blender/pulls/134469
This commit is contained in:
Brecht Van Lommel
2025-02-09 19:05:01 +01:00
parent 2fb6a30b23
commit 4786fbe774
410 changed files with 11 additions and 3258 deletions

View File

@@ -12,9 +12,7 @@
#include <python/PyAPI.h> #include <python/PyAPI.h>
#include <python/PySound.h> #include <python/PySound.h>
extern "C" {
extern void *BKE_sound_get_factory(void *sound); extern void *BKE_sound_get_factory(void *sound);
}
static PyObject *AUD_getSoundFromPointer(PyObject *self, PyObject *args) static PyObject *AUD_getSoundFromPointer(PyObject *self, PyObject *args)
{ {

View File

@@ -7,9 +7,6 @@
* \ingroup bke * \ingroup bke
* \brief Blender kernel action and pose functionality. * \brief Blender kernel action and pose functionality.
*/ */
#ifndef __cplusplus
# error This is a C++ only header.
#endif
#include "BLI_compiler_attrs.h" #include "BLI_compiler_attrs.h"
#include "BLI_function_ref.hh" #include "BLI_function_ref.hh"

View File

@@ -7,10 +7,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct ListBase; struct ListBase;
struct bAddon; struct bAddon;
@@ -39,7 +35,3 @@ struct bAddon *BKE_addon_find(const struct ListBase *addon_list, const char *mod
struct bAddon *BKE_addon_ensure(struct ListBase *addon_list, const char *module); struct bAddon *BKE_addon_ensure(struct ListBase *addon_list, const char *module);
bool BKE_addon_remove_safe(struct ListBase *addon_list, const char *module); bool BKE_addon_remove_safe(struct ListBase *addon_list, const char *module);
void BKE_addon_free(struct bAddon *addon); void BKE_addon_free(struct bAddon *addon);
#ifdef __cplusplus
}
#endif

View File

@@ -7,10 +7,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct CurveCache; struct CurveCache;
struct Object; struct Object;
@@ -42,7 +38,3 @@ bool BKE_where_on_path(const struct Object *ob,
float r_quat[4], float r_quat[4],
float *r_radius, float *r_radius,
float *r_weight); float *r_weight);
#ifdef __cplusplus
}
#endif

View File

@@ -7,10 +7,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct BlendDataReader; struct BlendDataReader;
struct BlendWriter; struct BlendWriter;
struct Object; struct Object;
@@ -59,7 +55,3 @@ struct bMotionPath *animviz_verify_motionpaths(struct ReportList *reports,
void animviz_motionpath_blend_write(struct BlendWriter *writer, struct bMotionPath *mpath); void animviz_motionpath_blend_write(struct BlendWriter *writer, struct bMotionPath *mpath);
void animviz_motionpath_blend_read_data(struct BlendDataReader *reader, struct bMotionPath *mpath); void animviz_motionpath_blend_read_data(struct BlendDataReader *reader, struct bMotionPath *mpath);
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "BLI_span.hh" #include "BLI_span.hh"
#include "BLI_sys_types.h" /* for bool */ #include "BLI_sys_types.h" /* for bool */
#ifdef __cplusplus
extern "C" {
#endif
struct AnimData; struct AnimData;
struct BlendDataReader; struct BlendDataReader;
struct BlendWriter; struct BlendWriter;
@@ -348,7 +344,3 @@ void BKE_animsys_eval_driver(struct Depsgraph *depsgraph,
void BKE_animsys_update_driver_array(struct ID *id); void BKE_animsys_update_driver_array(struct ID *id);
/* ************************************* */ /* ************************************* */
#ifdef __cplusplus
}
#endif

View File

@@ -5,10 +5,6 @@
#include <stddef.h> #include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
/** \file /** \file
* \ingroup bke * \ingroup bke
*/ */
@@ -69,7 +65,3 @@ void BKE_blender_version_blendfile_string_from_values(char *str_buff,
const size_t str_buff_maxncpy, const size_t str_buff_maxncpy,
const short file_version, const short file_version,
const short file_subversion); const short file_subversion);
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct BoidSettings; struct BoidSettings;
struct BoidState; struct BoidState;
struct Object; struct Object;
@@ -51,7 +47,3 @@ struct BoidState *boid_duplicate_state(struct BoidSettings *boids, struct BoidSt
void boid_free_settings(struct BoidSettings *boids); void boid_free_settings(struct BoidSettings *boids);
struct BoidSettings *boid_copy_settings(const struct BoidSettings *boids); struct BoidSettings *boid_copy_settings(const struct BoidSettings *boids);
struct BoidState *boid_get_current_state(struct BoidSettings *boids); struct BoidState *boid_get_current_state(struct BoidSettings *boids);
#ifdef __cplusplus
}
#endif

View File

@@ -10,9 +10,6 @@
* \ingroup bke * \ingroup bke
* \brief Camera data-block and utility functions. * \brief Camera data-block and utility functions.
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct Camera; struct Camera;
struct Depsgraph; struct Depsgraph;
@@ -181,7 +178,3 @@ struct CameraBGImage *BKE_camera_background_image_copy(const struct CameraBGImag
int flag); int flag);
void BKE_camera_background_image_remove(struct Camera *cam, struct CameraBGImage *bgpic); void BKE_camera_background_image_remove(struct Camera *cam, struct CameraBGImage *bgpic);
void BKE_camera_background_image_clear(struct Camera *cam); void BKE_camera_background_image_clear(struct Camera *cam);
#ifdef __cplusplus
}
#endif

View File

@@ -20,9 +20,6 @@ struct bConstraintTarget;
struct bPoseChannel; struct bPoseChannel;
/* ---------------------------------------------------------------------------- */ /* ---------------------------------------------------------------------------- */
#ifdef __cplusplus
extern "C" {
#endif
/* special struct for use in constraint evaluation */ /* special struct for use in constraint evaluation */
typedef struct bConstraintOb { typedef struct bConstraintOb {
@@ -375,7 +372,3 @@ void BKE_constraint_blend_write(struct BlendWriter *writer, struct ListBase *con
void BKE_constraint_blend_read_data(struct BlendDataReader *reader, void BKE_constraint_blend_read_data(struct BlendDataReader *reader,
struct ID *id_owner, struct ID *id_owner,
struct ListBase *lb); struct ListBase *lb);
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#include "DNA_layer_types.h" #include "DNA_layer_types.h"
#ifdef __cplusplus
extern "C" {
#endif
/* Forward declarations. */ /* Forward declarations. */
struct CryptomatteSession; struct CryptomatteSession;
struct Material; struct Material;
@@ -60,7 +56,3 @@ void BKE_cryptomatte_matte_id_to_entries(struct NodeCryptomatte *node_storage,
void BKE_cryptomatte_store_metadata(const struct CryptomatteSession *session, void BKE_cryptomatte_store_metadata(const struct CryptomatteSession *session,
struct RenderResult *render_result); struct RenderResult *render_result);
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "DNA_curveprofile_types.h" #include "DNA_curveprofile_types.h"
#ifdef __cplusplus
extern "C" {
#endif
struct BlendDataReader; struct BlendDataReader;
struct BlendWriter; struct BlendWriter;
struct CurveProfile; struct CurveProfile;
@@ -156,7 +152,3 @@ void BKE_curveprofile_blend_write(struct BlendWriter *writer, const struct Curve
* Expects that the curve profile itself has been read already. * Expects that the curve profile itself has been read already.
*/ */
void BKE_curveprofile_blend_read(struct BlendDataReader *reader, struct CurveProfile *profile); void BKE_curveprofile_blend_read(struct BlendDataReader *reader, struct CurveProfile *profile);
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
* \brief Low-level operations for curves that cannot be defined in the C++ header yet. * \brief Low-level operations for curves that cannot be defined in the C++ header yet.
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct Curves; struct Curves;
struct Depsgraph; struct Depsgraph;
struct Main; struct Main;
@@ -46,7 +42,3 @@ void BKE_curves_batch_cache_free(struct Curves *curves);
extern void (*BKE_curves_batch_cache_dirty_tag_cb)(struct Curves *curves, int mode); extern void (*BKE_curves_batch_cache_dirty_tag_cb)(struct Curves *curves, int mode);
extern void (*BKE_curves_batch_cache_free_cb)(struct Curves *curves); extern void (*BKE_curves_batch_cache_free_cb)(struct Curves *curves);
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include <stddef.h> #include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
#define CDF_TYPE_IMAGE 0 #define CDF_TYPE_IMAGE 0
#define CDF_TYPE_MESH 1 #define CDF_TYPE_MESH 1
@@ -45,7 +41,3 @@ void cdf_remove(const char *filepath);
CDataFileLayer *cdf_layer_find(CDataFile *cdf, int type, const char *name); CDataFileLayer *cdf_layer_find(CDataFile *cdf, int type, const char *name);
CDataFileLayer *cdf_layer_add(CDataFile *cdf, int type, const char *name, size_t datasize); CDataFileLayer *cdf_layer_add(CDataFile *cdf, int type, const char *name, size_t datasize);
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
struct Depsgraph; struct Depsgraph;
struct Object; struct Object;
struct ReportList; struct ReportList;
@@ -187,7 +183,3 @@ bool BKE_object_data_transfer_ex(struct Depsgraph *depsgraph,
const char *vgroup_name, const char *vgroup_name,
bool invert_vgroup, bool invert_vgroup,
struct ReportList *reports); struct ReportList *reports);
#ifdef __cplusplus
}
#endif

View File

@@ -9,10 +9,6 @@
* \brief display list (or rather multi purpose list) stuff. * \brief display list (or rather multi purpose list) stuff.
*/ */
#ifdef __cplusplus
extern "C" {
#endif
/** #DispList.type */ /** #DispList.type */
enum { enum {
/** A closed polygon (that can be filled). */ /** A closed polygon (that can be filled). */
@@ -92,7 +88,3 @@ float BKE_displist_calc_taper(struct Depsgraph *depsgraph,
int tot); int tot);
void BKE_displist_minmax(const struct ListBase *dispbase, float min[3], float max[3]); void BKE_displist_minmax(const struct ListBase *dispbase, float min[3], float max[3]);
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct Depsgraph; struct Depsgraph;
struct DynamicPaintCanvasSettings; struct DynamicPaintCanvasSettings;
struct DynamicPaintModifierData; struct DynamicPaintModifierData;
@@ -143,7 +139,3 @@ void dynamicPaint_outputSurfaceImage(struct DynamicPaintSurface *surface,
#define DPAINT_WAVE_NONE 0 #define DPAINT_WAVE_NONE 0
#define DPAINT_WAVE_OBSTACLE 1 #define DPAINT_WAVE_OBSTACLE 1
#define DPAINT_WAVE_REFLECT_ONLY 2 #define DPAINT_WAVE_REFLECT_ONLY 2
#ifdef __cplusplus
}
#endif

View File

@@ -8,16 +8,8 @@
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
struct Object; struct Object;
void BKE_editlattice_free(struct Object *ob); void BKE_editlattice_free(struct Object *ob);
void BKE_editlattice_make(struct Object *obedit); void BKE_editlattice_make(struct Object *obedit);
void BKE_editlattice_load(struct Object *obedit); void BKE_editlattice_load(struct Object *obedit);
#ifdef __cplusplus
}
#endif

View File

@@ -7,10 +7,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct Collection; struct Collection;
struct Depsgraph; struct Depsgraph;
struct ListBase; struct ListBase;
@@ -276,7 +272,3 @@ void BKE_sim_debug_data_remove_element(unsigned int hash);
void BKE_sim_debug_data_clear(void); void BKE_sim_debug_data_clear(void);
void BKE_sim_debug_data_clear_category(const char *category); void BKE_sim_debug_data_clear_category(const char *category);
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct AnimationEvalContext; struct AnimationEvalContext;
struct ChannelDriver; struct ChannelDriver;
struct DriverTarget; struct DriverTarget;
@@ -185,7 +181,3 @@ float evaluate_driver(struct PathResolvedRNA *anim_rna,
struct ChannelDriver *driver, struct ChannelDriver *driver,
struct ChannelDriver *driver_orig, struct ChannelDriver *driver_orig,
const struct AnimationEvalContext *anim_eval_context); const struct AnimationEvalContext *anim_eval_context);
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct Depsgraph; struct Depsgraph;
struct FluidDomainSettings; struct FluidDomainSettings;
struct FluidEffectorSettings; struct FluidEffectorSettings;
@@ -86,7 +82,3 @@ void BKE_fluid_fields_sanitize(struct FluidDomainSettings *settings);
void BKE_fluid_flow_behavior_set(struct Object *object, void BKE_fluid_flow_behavior_set(struct Object *object,
struct FluidFlowSettings *settings, struct FluidFlowSettings *settings,
int behavior); int behavior);
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct FreestyleConfig; struct FreestyleConfig;
struct FreestyleLineSet; struct FreestyleLineSet;
struct FreestyleModuleConfig; struct FreestyleModuleConfig;
@@ -51,7 +47,3 @@ short BKE_freestyle_lineset_get_active_index(struct FreestyleConfig *config);
void BKE_freestyle_lineset_set_active_index(struct FreestyleConfig *config, short index); void BKE_freestyle_lineset_set_active_index(struct FreestyleConfig *config, short index);
void BKE_freestyle_lineset_unique_name(struct FreestyleConfig *config, void BKE_freestyle_lineset_unique_name(struct FreestyleConfig *config,
struct FreestyleLineSet *lineset); struct FreestyleLineSet *lineset);
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct BlendDataReader; struct BlendDataReader;
struct Brush; struct Brush;
struct CurveMapping; struct CurveMapping;
@@ -291,7 +287,3 @@ void BKE_gpencil_stroke_weights_duplicate(struct bGPDstroke *gps_src, struct bGP
void BKE_gpencil_palette_ensure(struct Main *bmain, struct Scene *scene); void BKE_gpencil_palette_ensure(struct Main *bmain, struct Scene *scene);
void BKE_gpencil_blend_read_data(struct BlendDataReader *reader, struct bGPdata *gpd); void BKE_gpencil_blend_read_data(struct BlendDataReader *reader, struct bGPdata *gpd);
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "BKE_lib_query.hh" /* For LibraryForeachIDCallbackFlag enum. */ #include "BKE_lib_query.hh" /* For LibraryForeachIDCallbackFlag enum. */
#ifdef __cplusplus
extern "C" {
#endif
struct BlendDataReader; struct BlendDataReader;
struct GpencilModifierData; struct GpencilModifierData;
struct ID; struct ID;
@@ -53,7 +49,3 @@ void BKE_gpencil_modifiers_foreach_ID_link(struct Object *ob,
void BKE_gpencil_modifier_blend_read_data(struct BlendDataReader *reader, void BKE_gpencil_modifier_blend_read_data(struct BlendDataReader *reader,
struct ListBase *lb, struct ListBase *lb,
struct Object *ob); struct Object *ob);
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
* \brief Low-level operations for grease pencil that cannot be defined in the C++ header yet. * \brief Low-level operations for grease pencil that cannot be defined in the C++ header yet.
*/ */
#ifdef __cplusplus
extern "C" {
#endif
enum { enum {
BKE_GREASEPENCIL_BATCH_DIRTY_ALL = 0, BKE_GREASEPENCIL_BATCH_DIRTY_ALL = 0,
}; };
@@ -24,7 +20,3 @@ extern void (*BKE_grease_pencil_batch_cache_free_cb)(GreasePencil *grease_pencil
void BKE_grease_pencil_batch_cache_dirty_tag(GreasePencil *grease_pencil, int mode); void BKE_grease_pencil_batch_cache_dirty_tag(GreasePencil *grease_pencil, int mode);
void BKE_grease_pencil_batch_cache_free(GreasePencil *grease_pencil); void BKE_grease_pencil_batch_cache_free(GreasePencil *grease_pencil);
#ifdef __cplusplus
}
#endif

View File

@@ -15,11 +15,6 @@
* different design need to be introduced. * different design need to be introduced.
*/ */
#ifdef __cplusplus
extern "C" {
#endif
#include "BLI_compiler_attrs.h" #include "BLI_compiler_attrs.h"
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
@@ -152,7 +147,3 @@ void BKE_icon_geom_invert_lightness(struct Icon_Geom *geom);
int BKE_icon_ensure_studio_light(struct StudioLight *sl, int id_type); int BKE_icon_ensure_studio_light(struct StudioLight *sl, int id_type);
#define ICON_RENDER_DEFAULT_HEIGHT 32 #define ICON_RENDER_DEFAULT_HEIGHT 32
#ifdef __cplusplus
}
#endif

View File

@@ -7,10 +7,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct Main; struct Main;
/** /**
@@ -37,7 +33,3 @@ struct Main;
void do_versions_ipos_to_layered_actions(struct Main *bmain); void do_versions_ipos_to_layered_actions(struct Main *bmain);
/* --------------------- xxx stuff ------------------------ */ /* --------------------- xxx stuff ------------------------ */
#ifdef __cplusplus
};
#endif

View File

@@ -7,10 +7,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
/* Regularized Kelvinlets: Sculpting Brushes based on Fundamental Solutions of Elasticity /* Regularized Kelvinlets: Sculpting Brushes based on Fundamental Solutions of Elasticity
* Pixar Technical Memo #17-03 */ * Pixar Technical Memo #17-03 */
@@ -59,7 +55,3 @@ void BKE_kelvinlet_twist(float radius_elem_disp[3],
const float elem_orig_co[3], const float elem_orig_co[3],
const float brush_location[3], const float brush_location[3],
const float surface_normal[3]); const float surface_normal[3]);
#ifdef __cplusplus
}
#endif

View File

@@ -9,10 +9,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
/** Based on #BKE_addon_pref_type_init and friends */ /** Based on #BKE_addon_pref_type_init and friends */
struct UserDef; struct UserDef;
@@ -71,7 +67,3 @@ void BKE_keyconfig_pref_filter_items(struct UserDef *userdef,
const struct wmKeyConfigFilterItemParams *params, const struct wmKeyConfigFilterItemParams *params,
bool (*filter_fn)(struct wmKeyMapItem *kmi, void *user_data), bool (*filter_fn)(struct wmKeyMapItem *kmi, void *user_data),
void *user_data); void *user_data);
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "BLI_compiler_attrs.h" #include "BLI_compiler_attrs.h"
#ifdef __cplusplus
extern "C" {
#endif
struct Depsgraph; struct Depsgraph;
struct Light; struct Light;
struct Main; struct Main;
@@ -22,7 +18,3 @@ struct Main;
struct Light *BKE_light_add(struct Main *bmain, const char *name) ATTR_WARN_UNUSED_RESULT; struct Light *BKE_light_add(struct Main *bmain, const char *name) ATTR_WARN_UNUSED_RESULT;
void BKE_light_eval(struct Depsgraph *depsgraph, struct Light *la); void BKE_light_eval(struct Depsgraph *depsgraph, struct Light *la);
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "DNA_collection_types.h" /* eCollectionLightLinkingState */ #include "DNA_collection_types.h" /* eCollectionLightLinkingState */
#ifdef __cplusplus
extern "C" {
#endif
struct ID; struct ID;
struct Main; struct Main;
struct Object; struct Object;
@@ -116,7 +112,3 @@ void BKE_light_linking_select_receivers_of_emitter(struct Scene *scene,
struct ViewLayer *view_layer, struct ViewLayer *view_layer,
struct Object *emitter, struct Object *emitter,
LightLinkingType link_type); LightLinkingType link_type);
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
struct LightProbe; struct LightProbe;
struct Main; struct Main;
struct BlendWriter; struct BlendWriter;
@@ -70,7 +66,3 @@ void BKE_lightprobe_cache_free(struct Object *object);
* This depends on the light cache type. * This depends on the light cache type.
*/ */
int64_t BKE_lightprobe_grid_cache_frame_sample_count(const struct LightProbeGridCacheFrame *cache); int64_t BKE_lightprobe_grid_cache_frame_sample_count(const struct LightProbeGridCacheFrame *cache);
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct Depsgraph; struct Depsgraph;
struct Image; struct Image;
struct ImageUser; struct ImageUser;
@@ -412,7 +408,3 @@ void BKE_maskrasterize_buffer(MaskRasterHandle *mr_handle,
float *buffer); float *buffer);
/** \} */ /** \} */
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct Depsgraph; struct Depsgraph;
struct ImBuf; struct ImBuf;
struct Main; struct Main;
@@ -142,7 +138,3 @@ void BKE_movieclip_eval_update(struct Depsgraph *depsgraph,
#define MOVIECLIP_DISABLE_GREEN (1 << 1) #define MOVIECLIP_DISABLE_GREEN (1 << 1)
#define MOVIECLIP_DISABLE_BLUE (1 << 2) #define MOVIECLIP_DISABLE_BLUE (1 << 2)
#define MOVIECLIP_PREVIEW_GRAYSCALE (1 << 3) #define MOVIECLIP_PREVIEW_GRAYSCALE (1 << 3)
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "DNA_scene_enums.h" #include "DNA_scene_enums.h"
#ifdef __cplusplus
extern "C" {
#endif
struct ID; struct ID;
struct MDeformVert; struct MDeformVert;
struct Object; struct Object;
@@ -167,7 +163,3 @@ void BKE_object_defgroup_mirror_selection(struct Object *ob,
const bool *selection, const bool *selection,
bool *dg_flags_sel, bool *dg_flags_sel,
int *r_dg_flags_sel_tot); int *r_dg_flags_sel_tot);
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct OceanModifierData; struct OceanModifierData;
typedef struct OceanResult { typedef struct OceanResult {
@@ -165,7 +161,3 @@ float BLI_ocean_spectrum_texelmarsenarsloe(const struct Ocean *oc, float kx, flo
* called the fetch, or the distance over which the wind blows with constant velocity. * called the fetch, or the distance over which the wind blows with constant velocity.
*/ */
float BLI_ocean_spectrum_jonswap(const struct Ocean *oc, float kx, float kz); float BLI_ocean_spectrum_jonswap(const struct Ocean *oc, float kx, float kz);
#ifdef __cplusplus
}
#endif

View File

@@ -20,10 +20,6 @@
#include "DNA_particle_types.h" #include "DNA_particle_types.h"
#ifdef __cplusplus
extern "C" {
#endif
struct ParticleKey; struct ParticleKey;
struct ParticleSettings; struct ParticleSettings;
struct ParticleSystem; struct ParticleSystem;
@@ -712,7 +708,3 @@ void BKE_particle_system_blend_read_after_liblink(struct BlendLibReader *reader,
struct Object *ob, struct Object *ob,
struct ID *id, struct ID *id,
struct ListBase *particles); struct ListBase *particles);
#ifdef __cplusplus
}
#endif

View File

@@ -15,10 +15,6 @@
#include <stdio.h> /* for #FILE */ #include <stdio.h> /* for #FILE */
#ifdef __cplusplus
extern "C" {
#endif
/* Point cache clearing option, for BKE_ptcache_id_clear, before /* Point cache clearing option, for BKE_ptcache_id_clear, before
* and after are non-inclusive (they won't remove the cfra) */ * and after are non-inclusive (they won't remove the cfra) */
#define PTCACHE_CLEAR_ALL 0 #define PTCACHE_CLEAR_ALL 0
@@ -416,7 +412,3 @@ void BKE_ptcache_blend_read_data(struct BlendDataReader *reader,
struct ListBase *ptcaches, struct ListBase *ptcaches,
struct PointCache **ocache, struct PointCache **ocache,
int force_disk); int force_disk);
#ifdef __cplusplus
}
#endif

View File

@@ -18,10 +18,6 @@
#include "BLI_listbase.h" #include "BLI_listbase.h"
#include "BLI_span.hh" #include "BLI_span.hh"
#ifdef __cplusplus
extern "C" {
#endif
struct PoseBackup; struct PoseBackup;
struct Object; struct Object;
@@ -66,7 +62,3 @@ bool BKE_pose_backup_restore_on_object(struct Object *ob);
* Free the pose backup that was stored on this object's runtime data. * Free the pose backup that was stored on this object's runtime data.
*/ */
void BKE_pose_backup_clear(struct Object *ob); void BKE_pose_backup_clear(struct Object *ob);
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
#include "BLI_compiler_attrs.h" #include "BLI_compiler_attrs.h"
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
@@ -181,7 +177,3 @@ bool BKE_preferences_asset_shelf_settings_ensure_catalog_path_enabled(UserDef *u
const char *catalog_path); const char *catalog_path);
/** \} */ /** \} */
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "BKE_lib_query.hh" /* For LibraryForeachIDCallbackFlag enum. */ #include "BKE_lib_query.hh" /* For LibraryForeachIDCallbackFlag enum. */
#ifdef __cplusplus
extern "C" {
#endif
struct RigidBodyOb; struct RigidBodyOb;
struct RigidBodyWorld; struct RigidBodyWorld;
@@ -234,7 +230,3 @@ void BKE_rigidbody_object_sync_transforms(struct Depsgraph *depsgraph,
struct Object *ob); struct Object *ob);
/** \} */ /** \} */
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "IMB_imbuf_types.hh" #include "IMB_imbuf_types.hh"
#ifdef __cplusplus
extern "C" {
#endif
struct GPUOffScreen; struct GPUOffScreen;
enum eDrawType; enum eDrawType;
@@ -36,7 +32,3 @@ typedef struct ImBuf *(*SequencerDrawView)(struct Depsgraph *depsgraph,
struct GPUViewport *viewport, struct GPUViewport *viewport,
char err_out[256]); char err_out[256]);
extern SequencerDrawView sequencer_view3d_fn; extern SequencerDrawView sequencer_view3d_fn;
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "BKE_lib_query.hh" /* For LibraryForeachIDCallbackFlag enum. */ #include "BKE_lib_query.hh" /* For LibraryForeachIDCallbackFlag enum. */
#ifdef __cplusplus
extern "C" {
#endif
struct ARegionType; struct ARegionType;
struct BlendDataReader; struct BlendDataReader;
struct BlendWriter; struct BlendWriter;
@@ -185,7 +181,3 @@ void BKE_shaderfx_blend_write(struct BlendWriter *writer, struct ListBase *fxbas
void BKE_shaderfx_blend_read_data(struct BlendDataReader *reader, void BKE_shaderfx_blend_read_data(struct BlendDataReader *reader,
struct ListBase *lb, struct ListBase *lb,
struct Object *ob); struct Object *ob);
#ifdef __cplusplus
}
#endif

View File

@@ -7,10 +7,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct Depsgraph; struct Depsgraph;
struct Object; struct Object;
struct Scene; struct Scene;
@@ -81,7 +77,3 @@ extern void sbSetInterruptCallBack(int (*f)(void));
* For velocity & 2nd order stuff see: #vcloud_estimate_transform_v3. * For velocity & 2nd order stuff see: #vcloud_estimate_transform_v3.
*/ */
extern void SB_estimate_transform(Object *ob, float lloc[3], float lrot[3][3], float lscale[3][3]); extern void SB_estimate_transform(Object *ob, float lloc[3], float lrot[3][3], float lscale[3][3]);
#ifdef __cplusplus
}
#endif

View File

@@ -7,10 +7,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
#define SOUND_WAVE_SAMPLES_PER_SECOND 250 #define SOUND_WAVE_SAMPLES_PER_SECOND 250
#if defined(WITH_AUDASPACE) #if defined(WITH_AUDASPACE)
@@ -28,16 +24,16 @@ typedef struct SoundWaveform {
float *data; float *data;
} SoundWaveform; } SoundWaveform;
void BKE_sound_init_once(void); void BKE_sound_init_once();
void BKE_sound_exit_once(void); void BKE_sound_exit_once();
void *BKE_sound_get_device(void); void *BKE_sound_get_device();
void BKE_sound_init(struct Main *bmain); void BKE_sound_init(struct Main *bmain);
void BKE_sound_init_main(struct Main *bmain); void BKE_sound_init_main(struct Main *bmain);
void BKE_sound_exit(void); void BKE_sound_exit();
void BKE_sound_force_device(const char *device); void BKE_sound_force_device(const char *device);
@@ -114,8 +110,8 @@ void BKE_sound_ensure_scene(struct Scene *scene);
void BKE_sound_destroy_scene(struct Scene *scene); void BKE_sound_destroy_scene(struct Scene *scene);
void BKE_sound_lock(void); void BKE_sound_lock();
void BKE_sound_unlock(void); void BKE_sound_unlock();
void BKE_sound_reset_scene_specs(struct Scene *scene); void BKE_sound_reset_scene_specs(struct Scene *scene);
@@ -190,7 +186,7 @@ void *BKE_sound_get_factory(void *sound);
float BKE_sound_get_length(struct Main *bmain, struct bSound *sound); float BKE_sound_get_length(struct Main *bmain, struct bSound *sound);
char **BKE_sound_get_device_names(void); char **BKE_sound_get_device_names();
typedef void (*SoundJackSyncCallback)(struct Main *bmain, int mode, double time); typedef void (*SoundJackSyncCallback)(struct Main *bmain, int mode, double time);
@@ -202,7 +198,3 @@ void BKE_sound_jack_scene_update(struct Scene *scene, int mode, double time);
struct Depsgraph; struct Depsgraph;
void BKE_sound_evaluate(struct Depsgraph *depsgraph, struct Main *bmain, struct bSound *sound); void BKE_sound_evaluate(struct Depsgraph *depsgraph, struct Main *bmain, struct bSound *sound);
#ifdef __cplusplus
}
#endif

View File

@@ -9,15 +9,7 @@
* \brief General operations for speakers. * \brief General operations for speakers.
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct Main; struct Main;
struct Speaker; struct Speaker;
struct Speaker *BKE_speaker_add(struct Main *bmain, const char *name); struct Speaker *BKE_speaker_add(struct Main *bmain, const char *name);
#ifdef __cplusplus
}
#endif

View File

@@ -16,10 +16,6 @@
#include "DNA_userdef_types.h" /* for #SolidLight */ #include "DNA_userdef_types.h" /* for #SolidLight */
#ifdef __cplusplus
extern "C" {
#endif
struct ImBuf; struct ImBuf;
#define STUDIOLIGHT_ICON_ID_TYPE_RADIANCE (1 << 0) #define STUDIOLIGHT_ICON_ID_TYPE_RADIANCE (1 << 0)
@@ -120,7 +116,3 @@ void BKE_studiolight_set_free_function(StudioLight *sl,
StudioLightFreeFunction *free_function, StudioLightFreeFunction *free_function,
void *data); void *data);
void BKE_studiolight_unset_icon_id(StudioLight *sl, int icon_id); void BKE_studiolight_unset_icon_id(StudioLight *sl, int icon_id);
#ifdef __cplusplus
}
#endif

View File

@@ -7,10 +7,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct Main; struct Main;
struct Text; struct Text;
struct TextLine; struct TextLine;
@@ -158,7 +154,3 @@ char *txt_to_buf_for_undo(struct Text *text, size_t *r_buf_len)
* Decode a buffer from #txt_to_buf_for_undo. * Decode a buffer from #txt_to_buf_for_undo.
*/ */
void txt_from_buf_for_undo(struct Text *text, const char *buf, size_t buf_len) ATTR_NONNULL(1, 2); void txt_from_buf_for_undo(struct Text *text, const char *buf, size_t buf_len) ATTR_NONNULL(1, 2);
#ifdef __cplusplus
}
#endif

View File

@@ -7,10 +7,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct Text; struct Text;
typedef struct SuggItem { typedef struct SuggItem {
@@ -56,7 +52,3 @@ SuggItem *texttool_suggest_last(void);
void texttool_suggest_select(SuggItem *sel); void texttool_suggest_select(SuggItem *sel);
SuggItem *texttool_suggest_selected(void); SuggItem *texttool_suggest_selected(void);
int *texttool_suggest_top(void); int *texttool_suggest_top(void);
#ifdef __cplusplus
}
#endif

View File

@@ -7,10 +7,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct Brush; struct Brush;
struct ColorBand; struct ColorBand;
struct FreestyleLineStyle; struct FreestyleLineStyle;
@@ -90,7 +86,3 @@ void BKE_texture_get_value(struct Tex *texture,
* Make sure all images used by texture are loaded into pool. * Make sure all images used by texture are loaded into pool.
*/ */
void BKE_texture_fetch_images_for_pool(struct Tex *texture, struct ImagePool *pool); void BKE_texture_fetch_images_for_pool(struct Tex *texture, struct ImagePool *pool);
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
struct Camera; struct Camera;
struct ImBuf; struct ImBuf;
struct ListBase; struct ListBase;
@@ -828,7 +824,3 @@ void BKE_tracking_get_rna_path_prefix_for_plane_track(
#define PLANE_TRACK_VIEW_SELECTED(plane_track) \ #define PLANE_TRACK_VIEW_SELECTED(plane_track) \
((((plane_track)->flag & PLANE_TRACK_HIDDEN) == 0) && ((plane_track)->flag & SELECT)) ((((plane_track)->flag & PLANE_TRACK_HIDDEN) == 0) && ((plane_track)->flag & SELECT))
#ifdef __cplusplus
}
#endif

View File

@@ -7,17 +7,9 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct Depsgraph; struct Depsgraph;
struct Main; struct Main;
struct World; struct World;
struct World *BKE_world_add(struct Main *bmain, const char *name); struct World *BKE_world_add(struct Main *bmain, const char *name);
void BKE_world_eval(struct Depsgraph *depsgraph, struct World *world); void BKE_world_eval(struct Depsgraph *depsgraph, struct World *world);
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
using CCGMeshHDL = void *; using CCGMeshHDL = void *;
using CCGVertHDL = void *; using CCGVertHDL = void *;
using CCGEdgeHDL = void *; using CCGEdgeHDL = void *;
@@ -221,7 +217,3 @@ void ccgEdgeIterator_next(CCGEdgeIterator *ei);
CCGFace *ccgFaceIterator_getCurrent(CCGFaceIterator *fi); CCGFace *ccgFaceIterator_getCurrent(CCGFaceIterator *fi);
int ccgFaceIterator_isStopped(CCGFaceIterator *fi); int ccgFaceIterator_isStopped(CCGFaceIterator *fi);
void ccgFaceIterator_next(CCGFaceIterator *fi); void ccgFaceIterator_next(CCGFaceIterator *fi);
#ifdef __cplusplus
}
#endif

View File

@@ -17,10 +17,6 @@
#include <cstdint> #include <cstdint>
#include <cstring> #include <cstring>
#ifdef __cplusplus
extern "C" {
#endif
BLI_INLINE int ccg_gridsize(int level) BLI_INLINE int ccg_gridsize(int level)
{ {
BLI_assert(level > 0); BLI_assert(level > 0);
@@ -266,7 +262,3 @@ BLI_INLINE void VertDataAvg4(float v[],
v[i] = (a[i] + b[i] + c[i] + d[i]) * 0.25f; v[i] = (a[i] + b[i] + c[i] + d[i]) * 0.25f;
} }
} }
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "CCGSubSurf.h" #include "CCGSubSurf.h"
#ifdef __cplusplus
extern "C" {
#endif
/** /**
* Definitions which defines internal behavior of CCGSubSurf. * Definitions which defines internal behavior of CCGSubSurf.
*/ */
@@ -260,7 +256,3 @@ void ccgSubSurf__sync_legacy(CCGSubSurf *ss);
#ifdef DUMP_RESULT_GRIDS #ifdef DUMP_RESULT_GRIDS
void ccgSubSurf__dumpCoords(CCGSubSurf *ss); void ccgSubSurf__dumpCoords(CCGSubSurf *ss);
#endif #endif
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
#ifdef WITH_OCEANSIM #ifdef WITH_OCEANSIM
# include "BLI_threads.h" # include "BLI_threads.h"
# include "fftw3.h" # include "fftw3.h"
@@ -117,7 +113,3 @@ typedef struct Ocean {
int stub; int stub;
} Ocean; } Ocean;
#endif #endif
#ifdef __cplusplus
}
#endif

View File

@@ -16,10 +16,6 @@
#include "RNA_types.hh" #include "RNA_types.hh"
#ifdef __cplusplus
extern "C" {
#endif
struct AnimationEvalContext; struct AnimationEvalContext;
/* --------------- NLA Evaluation DataTypes ----------------------- */ /* --------------- NLA Evaluation DataTypes ----------------------- */
@@ -294,7 +290,3 @@ void nlasnapshot_blend_strip_no_blend(PointerRNA *ptr,
NlaEvalStrip *nes, NlaEvalStrip *nes,
NlaEvalSnapshot *snapshot, NlaEvalSnapshot *snapshot,
const struct AnimationEvalContext *anim_eval_context); const struct AnimationEvalContext *anim_eval_context);
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "BKE_particle.h" #include "BKE_particle.h"
#ifdef __cplusplus
extern "C" {
#endif
struct CurveMapping; struct CurveMapping;
typedef struct ParticleChildModifierContext { typedef struct ParticleChildModifierContext {
@@ -56,7 +52,3 @@ void do_child_modifiers(const ParticleChildModifierContext *modifier_ctx,
float mat[4][4], float mat[4][4],
ParticleKey *state, ParticleKey *state,
float t); float t);
#ifdef __cplusplus
}
#endif

View File

@@ -16,10 +16,6 @@
#include "BLI_threads.h" #include "BLI_threads.h"
#ifdef __cplusplus
extern "C" {
#endif
struct GHash; struct GHash;
struct MovieTracking; struct MovieTracking;
struct MovieTrackingMarker; struct MovieTrackingMarker;
@@ -184,7 +180,3 @@ TrackingImageAccessor *tracking_image_accessor_new(MovieClip *clips[MAX_ACCESSOR
MovieTrackingTrack **tracks, MovieTrackingTrack **tracks,
int num_tracks); int num_tracks);
void tracking_image_accessor_destroy(TrackingImageAccessor *accessor); void tracking_image_accessor_destroy(TrackingImageAccessor *accessor);
#ifdef __cplusplus
}
#endif

View File

@@ -325,8 +325,6 @@ static void compositor_engine_update(void *data)
} }
} }
extern "C" {
DrawEngineType draw_engine_compositor_type = { DrawEngineType draw_engine_compositor_type = {
/*next*/ nullptr, /*next*/ nullptr,
/*prev*/ nullptr, /*prev*/ nullptr,
@@ -343,4 +341,3 @@ DrawEngineType draw_engine_compositor_type = {
/*render_to_image*/ nullptr, /*render_to_image*/ nullptr,
/*store_metadata*/ nullptr, /*store_metadata*/ nullptr,
}; };
}

View File

@@ -4,14 +4,6 @@
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
struct DrawEngineType; struct DrawEngineType;
extern DrawEngineType draw_engine_compositor_type; extern DrawEngineType draw_engine_compositor_type;
#ifdef __cplusplus
}
#endif

View File

@@ -183,8 +183,6 @@ static void eevee_render_update_passes(RenderEngine *engine, Scene *scene, ViewL
eevee::Instance::update_passes(engine, scene, view_layer); eevee::Instance::update_passes(engine, scene, view_layer);
} }
extern "C" {
DrawEngineType draw_engine_eevee_next_type = { DrawEngineType draw_engine_eevee_next_type = {
/*next*/ nullptr, /*next*/ nullptr,
/*prev*/ nullptr, /*prev*/ nullptr,
@@ -225,4 +223,3 @@ RenderEngineType DRW_engine_viewport_eevee_next_type = {
/*call*/ nullptr, /*call*/ nullptr,
}, },
}; };
}

View File

@@ -11,13 +11,5 @@
#include "DRW_render.hh" #include "DRW_render.hh"
#include "RE_engine.h" #include "RE_engine.h"
#ifdef __cplusplus
extern "C" {
#endif
extern DrawEngineType draw_engine_eevee_next_type; extern DrawEngineType draw_engine_eevee_next_type;
extern RenderEngineType DRW_engine_viewport_eevee_next_type; extern RenderEngineType DRW_engine_viewport_eevee_next_type;
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
struct DrawEngineType; struct DrawEngineType;
struct RenderEngineType; struct RenderEngineType;
@@ -24,7 +20,3 @@ extern RenderEngineType DRW_engine_viewport_external_type;
* *
* NOTE: Released by the draw engine when it is done drawing. */ * NOTE: Released by the draw engine when it is done drawing. */
bool DRW_engine_external_acquire_for_image_editor(void); bool DRW_engine_external_acquire_for_image_editor(void);
#ifdef __cplusplus
}
#endif

View File

@@ -6,15 +6,6 @@
#ifndef GPU_SHADER #ifndef GPU_SHADER
# include "GPU_shader_shared_utils.hh" # include "GPU_shader_shared_utils.hh"
# ifndef __cplusplus
typedef struct gpMaterial gpMaterial;
typedef struct gpLight gpLight;
typedef enum gpMaterialFlag gpMaterialFlag;
# ifdef GP_LIGHT
typedef enum gpLightType gpLightType;
# endif
# endif
#endif #endif
enum gpMaterialFlag : uint32_t { enum gpMaterialFlag : uint32_t {

View File

@@ -83,8 +83,6 @@ static void IMAGE_instance_free(void *instance)
} // namespace blender::image_engine } // namespace blender::image_engine
extern "C" {
using namespace blender::image_engine; using namespace blender::image_engine;
DrawEngineType draw_engine_image_type = { DrawEngineType draw_engine_image_type = {
@@ -103,4 +101,3 @@ DrawEngineType draw_engine_image_type = {
/*render_to_image*/ nullptr, /*render_to_image*/ nullptr,
/*store_metadata*/ nullptr, /*store_metadata*/ nullptr,
}; };
}

View File

@@ -8,14 +8,6 @@
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
struct DrawEngineType; struct DrawEngineType;
extern DrawEngineType draw_engine_image_type; extern DrawEngineType draw_engine_image_type;
#ifdef __cplusplus
}
#endif

View File

@@ -8,14 +8,6 @@
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
struct DrawEngineType; struct DrawEngineType;
extern DrawEngineType draw_engine_overlay_next_type; extern DrawEngineType draw_engine_overlay_next_type;
#ifdef __cplusplus
}
#endif

View File

@@ -9,16 +9,6 @@
# include "DNA_action_types.h" # include "DNA_action_types.h"
# include "DNA_view3d_types.h" # include "DNA_view3d_types.h"
# ifdef __cplusplus
extern "C" {
# else
typedef enum OVERLAY_GridBits OVERLAY_GridBits;
# endif
typedef struct OVERLAY_GridData OVERLAY_GridData;
typedef struct ThemeColorData ThemeColorData;
typedef struct ExtraInstanceData ExtraInstanceData;
typedef struct VertexData VertexData;
#endif #endif
/* TODO(fclem): Should eventually become OVERLAY_BackgroundType. /* TODO(fclem): Should eventually become OVERLAY_BackgroundType.
@@ -215,7 +205,7 @@ struct ExtraInstanceData {
float4 color_; float4 color_;
float4x4 object_to_world; float4x4 object_to_world;
#if !defined(GPU_SHADER) && defined(__cplusplus) #if !defined(GPU_SHADER)
ExtraInstanceData(const float4x4 &object_to_world, const float4 &color, float draw_size) ExtraInstanceData(const float4x4 &object_to_world, const float4 &color, float draw_size)
{ {
this->color_ = color; this->color_ = color;
@@ -351,9 +341,3 @@ struct BoneStickData {
#endif #endif
}; };
BLI_STATIC_ASSERT_ALIGN(BoneStickData, 16) BLI_STATIC_ASSERT_ALIGN(BoneStickData, 16)
#ifndef GPU_SHADER
# ifdef __cplusplus
}
# endif
#endif

View File

@@ -792,8 +792,6 @@ static void workbench_render_update_passes(RenderEngine *engine,
} }
} }
extern "C" {
DrawEngineType draw_engine_workbench = { DrawEngineType draw_engine_workbench = {
/*next*/ nullptr, /*next*/ nullptr,
/*prev*/ nullptr, /*prev*/ nullptr,
@@ -834,6 +832,5 @@ RenderEngineType DRW_engine_viewport_workbench_type = {
/*call*/ nullptr, /*call*/ nullptr,
}, },
}; };
}
/** \} */ /** \} */

View File

@@ -8,14 +8,6 @@
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
struct RenderEngineType; struct RenderEngineType;
extern RenderEngineType DRW_engine_viewport_workbench_type; extern RenderEngineType DRW_engine_viewport_workbench_type;
#ifdef __cplusplus
};
#endif

View File

@@ -9,10 +9,6 @@
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
// #define RIGID_DEFORM // #define RIGID_DEFORM
struct Mesh; struct Mesh;
@@ -57,10 +53,6 @@ void rigid_deform_iteration(void);
void rigid_deform_end(int cancel); void rigid_deform_end(int cancel);
#endif #endif
#ifdef __cplusplus
}
#endif
/* Harmonic Coordinates */ /* Harmonic Coordinates */
/* ED_mesh_deform_bind_callback(...) defined in ED_armature.hh */ /* ED_mesh_deform_bind_callback(...) defined in ED_armature.hh */

View File

@@ -16,10 +16,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct GizmoGeomInfo { typedef struct GizmoGeomInfo {
int nverts; int nverts;
int ntris; int ntris;
@@ -36,7 +32,3 @@ extern GizmoGeomInfo wm_gizmo_geom_data_cube;
/* dial gizmo */ /* dial gizmo */
extern GizmoGeomInfo wm_gizmo_geom_data_dial; extern GizmoGeomInfo wm_gizmo_geom_data_dial;
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
/* XXX could become UserPref */ /* XXX could become UserPref */
#define FSMENU_RECENT_MAX 10 #define FSMENU_RECENT_MAX 10
#ifdef __cplusplus
extern "C" {
#endif
/** /**
* Inserts a new fsmenu entry with the given \a path. * Inserts a new fsmenu entry with the given \a path.
* Duplicate entries are not added. * Duplicate entries are not added.
@@ -63,7 +59,3 @@ void fsmenu_refresh_bookmarks_status(struct wmWindowManager *wm, struct FSMenu *
int fsmenu_get_active_indices(struct FSMenu *fsmenu, int fsmenu_get_active_indices(struct FSMenu *fsmenu,
enum FSMenuCategory category, enum FSMenuCategory category,
const char *dir); const char *dir);
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
* \ingroup freestyle * \ingroup freestyle
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct FreestyleConfig; struct FreestyleConfig;
struct FreestyleLineStyle; struct FreestyleLineStyle;
struct Material; struct Material;
@@ -56,7 +52,3 @@ bool FRS_move_active_lineset(struct FreestyleConfig *config, int direction);
/* Testing */ /* Testing */
struct Material *FRS_create_stroke_material(struct Main *bmain, struct Material *FRS_create_stroke_material(struct Main *bmain,
struct FreestyleLineStyle *linestyle); struct FreestyleLineStyle *linestyle);
#ifdef __cplusplus
}
#endif

View File

@@ -50,8 +50,6 @@ using namespace Freestyle;
#include "FRS_freestyle.h" #include "FRS_freestyle.h"
extern "C" {
FreestyleGlobals g_freestyle; FreestyleGlobals g_freestyle;
// Freestyle configuration // Freestyle configuration
@@ -760,5 +758,3 @@ Material *FRS_create_stroke_material(Main *bmain, FreestyleLineStyle *linestyle)
ma->id.us = 0; ma->id.us = 0;
return ma; return ma;
} }
} // extern "C"

View File

@@ -8,10 +8,6 @@
#include "BPy_BBox.h" #include "BPy_BBox.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
using namespace Freestyle::Geometry; using namespace Freestyle::Geometry;
@@ -109,7 +105,3 @@ PyTypeObject BBox_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -15,10 +15,6 @@ extern "C" {
#include "../geometry/BBox.h" #include "../geometry/BBox.h"
#include "../geometry/Geom.h" #include "../geometry/Geom.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject BBox_Type; extern PyTypeObject BBox_Type;
@@ -36,7 +32,3 @@ typedef struct {
int BBox_Init(PyObject *module); int BBox_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "BPy_Convert.h" #include "BPy_Convert.h"
#include "BPy_Interface0D.h" #include "BPy_Interface0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -178,7 +174,3 @@ PyTypeObject BinaryPredicate0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../stroke/Predicates0D.h" #include "../stroke/Predicates0D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject BinaryPredicate0D_Type; extern PyTypeObject BinaryPredicate0D_Type;
@@ -36,7 +32,3 @@ typedef struct {
int BinaryPredicate0D_Init(PyObject *module); int BinaryPredicate0D_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -17,10 +17,6 @@
#include "BinaryPredicate1D/BPy_TrueBP1D.h" #include "BinaryPredicate1D/BPy_TrueBP1D.h"
#include "BinaryPredicate1D/BPy_ViewMapGradientNormBP1D.h" #include "BinaryPredicate1D/BPy_ViewMapGradientNormBP1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -209,7 +205,3 @@ PyTypeObject BinaryPredicate1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../stroke/Predicates1D.h" #include "../stroke/Predicates1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject BinaryPredicate1D_Type; extern PyTypeObject BinaryPredicate1D_Type;
@@ -36,7 +32,3 @@ typedef struct {
int BinaryPredicate1D_Init(PyObject *module); int BinaryPredicate1D_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -15,10 +15,6 @@
using namespace Freestyle; using namespace Freestyle;
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
//------------------------ MODULE FUNCTIONS ---------------------------------- //------------------------ MODULE FUNCTIONS ----------------------------------
@@ -336,7 +332,3 @@ int ContextFunctions_Init(PyObject *module)
} }
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,14 +12,6 @@ extern "C" {
#include <Python.h> #include <Python.h>
} }
#ifdef __cplusplus
extern "C" {
#endif
/*---------------------------Python BPy_ContextFunctions visible prototypes-----------*/ /*---------------------------Python BPy_ContextFunctions visible prototypes-----------*/
int ContextFunctions_Init(PyObject *module); int ContextFunctions_Init(PyObject *module);
#ifdef __cplusplus
}
#endif

View File

@@ -46,10 +46,6 @@
#include "BKE_colortools.hh" /* BKE_curvemapping_evaluateF() */ #include "BKE_colortools.hh" /* BKE_curvemapping_evaluateF() */
#include "BKE_material.hh" /* ramp_blend() */ #include "BKE_material.hh" /* ramp_blend() */
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
//------------------------ MODULE FUNCTIONS ---------------------------------- //------------------------ MODULE FUNCTIONS ----------------------------------
@@ -599,7 +595,3 @@ PyObject *Freestyle_Init()
} }
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <Python.h> #include <Python.h>
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -21,7 +17,3 @@ extern "C" {
PyObject *Freestyle_Init(void); PyObject *Freestyle_Init(void);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "BLI_hash_mm2a.hh" #include "BLI_hash_mm2a.hh"
#include "BLI_math_vector.h" #include "BLI_math_vector.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -590,7 +586,3 @@ PyTypeObject FrsMaterial_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../scene_graph/FrsMaterial.h" #include "../scene_graph/FrsMaterial.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject FrsMaterial_Type; extern PyTypeObject FrsMaterial_Type;
@@ -37,7 +33,3 @@ int FrsMaterial_Init(PyObject *module);
void FrsMaterial_mathutils_register_callback(); void FrsMaterial_mathutils_register_callback();
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -15,10 +15,6 @@
#include <sstream> #include <sstream>
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -372,7 +368,3 @@ PyTypeObject FrsNoise_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -15,10 +15,6 @@ extern "C" {
#include "../geometry/Noise.h" #include "../geometry/Noise.h"
#include "../system/PseudoNoise.h" #include "../system/PseudoNoise.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject FrsNoise_Type; extern PyTypeObject FrsNoise_Type;
@@ -37,7 +33,3 @@ typedef struct {
int FrsNoise_Init(PyObject *module); int FrsNoise_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "BPy_Convert.h" #include "BPy_Convert.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -203,7 +199,3 @@ PyTypeObject Id_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -16,10 +16,6 @@ extern "C" {
#include "../system/Id.h" #include "../system/Id.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Id_Type; extern PyTypeObject Id_Type;
@@ -37,7 +33,3 @@ typedef struct {
int Id_Init(PyObject *module); int Id_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -16,10 +16,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -239,7 +235,3 @@ int IntegrationType_Init(PyObject *module)
} }
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../view_map/Interface1D.h" #include "../view_map/Interface1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject IntegrationType_Type; extern PyTypeObject IntegrationType_Type;
@@ -30,7 +26,3 @@ extern PyTypeObject IntegrationType_Type;
int IntegrationType_Init(PyObject *module); int IntegrationType_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -18,10 +18,6 @@
#include "Interface0D/ViewVertex/BPy_TVertex.h" #include "Interface0D/ViewVertex/BPy_TVertex.h"
#include "Interface1D/BPy_FEdge.h" #include "Interface1D/BPy_FEdge.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -353,7 +349,3 @@ PyTypeObject Interface0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../view_map/Interface0D.h" #include "../view_map/Interface0D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Interface0D_Type; extern PyTypeObject Interface0D_Type;
@@ -37,7 +33,3 @@ typedef struct {
int Interface0D_Init(PyObject *module); int Interface0D_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -19,10 +19,6 @@
#include "BPy_MediumType.h" #include "BPy_MediumType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -381,7 +377,3 @@ PyTypeObject Interface1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../view_map/Interface1D.h" #include "../view_map/Interface1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Interface1D_Type; extern PyTypeObject Interface1D_Type;
@@ -37,7 +33,3 @@ typedef struct {
int Interface1D_Init(PyObject *module); int Interface1D_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -20,10 +20,6 @@
#include "Iterator/BPy_ViewEdgeIterator.h" #include "Iterator/BPy_ViewEdgeIterator.h"
#include "Iterator/BPy_orientedViewEdgeIterator.h" #include "Iterator/BPy_orientedViewEdgeIterator.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -258,7 +254,3 @@ PyTypeObject Iterator_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../system/Iterator.h" #include "../system/Iterator.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Iterator_Type; extern PyTypeObject Iterator_Type;
@@ -35,7 +31,3 @@ typedef struct {
int Iterator_Init(PyObject *module); int Iterator_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "BPy_Convert.h" #include "BPy_Convert.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -92,7 +88,3 @@ int MediumType_Init(PyObject *module)
} }
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../stroke/Stroke.h" #include "../stroke/Stroke.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject MediumType_Type; extern PyTypeObject MediumType_Type;
@@ -34,7 +30,3 @@ typedef struct {
int MediumType_Init(PyObject *module); int MediumType_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "BPy_Convert.h" #include "BPy_Convert.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -235,7 +231,3 @@ static PyObject *BPy_Nature_or(PyObject *a, PyObject *b)
} }
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../winged_edge/Nature.h" #include "../winged_edge/Nature.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Nature_Type; extern PyTypeObject Nature_Type;
@@ -34,7 +30,3 @@ typedef struct {
int Nature_Init(PyObject *module); int Nature_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -22,10 +22,6 @@
#include <sstream> #include <sstream>
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -836,7 +832,3 @@ PyTypeObject Operators_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../stroke/Operators.h" #include "../stroke/Operators.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Operators_Type; extern PyTypeObject Operators_Type;
@@ -34,7 +30,3 @@ typedef struct {
int Operators_Init(PyObject *module); int Operators_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -16,10 +16,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -324,7 +320,3 @@ PyTypeObject SShape_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../view_map/Silhouette.h" #include "../view_map/Silhouette.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject SShape_Type; extern PyTypeObject SShape_Type;
@@ -36,7 +32,3 @@ typedef struct {
int SShape_Init(PyObject *module); int SShape_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "BPy_Convert.h" #include "BPy_Convert.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -736,7 +732,3 @@ PyTypeObject StrokeAttribute_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../stroke/Stroke.h" #include "../stroke/Stroke.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject StrokeAttribute_Type; extern PyTypeObject StrokeAttribute_Type;
@@ -38,7 +34,3 @@ int StrokeAttribute_Init(PyObject *module);
void StrokeAttribute_mathutils_register_callback(); void StrokeAttribute_mathutils_register_callback();
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -30,10 +30,6 @@
#include "StrokeShader/BPy_ThicknessNoiseShader.h" #include "StrokeShader/BPy_ThicknessNoiseShader.h"
#include "StrokeShader/BPy_TipRemoverShader.h" #include "StrokeShader/BPy_TipRemoverShader.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -300,7 +296,3 @@ PyTypeObject StrokeShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -16,10 +16,6 @@ extern "C" {
#include "../stroke/StrokeShader.h" #include "../stroke/StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject StrokeShader_Type; extern PyTypeObject StrokeShader_Type;
@@ -38,7 +34,3 @@ typedef struct {
int StrokeShader_Init(PyObject *module); int StrokeShader_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -19,10 +19,6 @@
#include "UnaryFunction0D/BPy_UnaryFunction0DVectorViewShape.h" #include "UnaryFunction0D/BPy_UnaryFunction0DVectorViewShape.h"
#include "UnaryFunction0D/BPy_UnaryFunction0DViewShape.h" #include "UnaryFunction0D/BPy_UnaryFunction0DViewShape.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -154,7 +150,3 @@ PyTypeObject UnaryFunction0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../view_map/Functions0D.h" #include "../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction0D_Type; extern PyTypeObject UnaryFunction0D_Type;
@@ -36,7 +32,3 @@ typedef struct {
int UnaryFunction0D_Init(PyObject *module); int UnaryFunction0D_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -17,10 +17,6 @@
#include "UnaryFunction1D/BPy_UnaryFunction1DVectorViewShape.h" #include "UnaryFunction1D/BPy_UnaryFunction1DVectorViewShape.h"
#include "UnaryFunction1D/BPy_UnaryFunction1DVoid.h" #include "UnaryFunction1D/BPy_UnaryFunction1DVoid.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -148,7 +144,3 @@ PyTypeObject UnaryFunction1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../view_map/Functions1D.h" #include "../view_map/Functions1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction1D_Type; extern PyTypeObject UnaryFunction1D_Type;
@@ -36,7 +32,3 @@ typedef struct {
int UnaryFunction1D_Init(PyObject *module); int UnaryFunction1D_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "UnaryPredicate0D/BPy_FalseUP0D.h" #include "UnaryPredicate0D/BPy_FalseUP0D.h"
#include "UnaryPredicate0D/BPy_TrueUP0D.h" #include "UnaryPredicate0D/BPy_TrueUP0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -196,7 +192,3 @@ PyTypeObject UnaryPredicate0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../stroke/Predicates0D.h" #include "../stroke/Predicates0D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryPredicate0D_Type; extern PyTypeObject UnaryPredicate0D_Type;
@@ -36,7 +32,3 @@ typedef struct {
int UnaryPredicate0D_Init(PyObject *module); int UnaryPredicate0D_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -22,10 +22,6 @@
#include "UnaryPredicate1D/BPy_TrueUP1D.h" #include "UnaryPredicate1D/BPy_TrueUP1D.h"
#include "UnaryPredicate1D/BPy_WithinImageBoundaryUP1D.h" #include "UnaryPredicate1D/BPy_WithinImageBoundaryUP1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -246,7 +242,3 @@ PyTypeObject UnaryPredicate1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../stroke/Predicates1D.h" #include "../stroke/Predicates1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryPredicate1D_Type; extern PyTypeObject UnaryPredicate1D_Type;
@@ -36,7 +32,3 @@ typedef struct {
int UnaryPredicate1D_Init(PyObject *module); int UnaryPredicate1D_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "Interface1D/BPy_FEdge.h" #include "Interface1D/BPy_FEdge.h"
#include "Interface1D/BPy_ViewEdge.h" #include "Interface1D/BPy_ViewEdge.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -218,7 +214,3 @@ PyTypeObject ViewMap_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@ extern "C" {
#include "../view_map/ViewMap.h" #include "../view_map/ViewMap.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ViewMap_Type; extern PyTypeObject ViewMap_Type;
@@ -35,7 +31,3 @@ typedef struct {
int ViewMap_Init(PyObject *module); int ViewMap_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -15,10 +15,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -399,7 +395,3 @@ PyTypeObject ViewShape_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -16,10 +16,6 @@ extern "C" {
#include "BPy_SShape.h" #include "BPy_SShape.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ViewShape_Type; extern PyTypeObject ViewShape_Type;
@@ -39,7 +35,3 @@ typedef struct {
int ViewShape_Init(PyObject *module); int ViewShape_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#include "BPy_FalseBP1D.h" #include "BPy_FalseBP1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -89,7 +85,3 @@ PyTypeObject FalseBP1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_BinaryPredicate1D.h" #include "../BPy_BinaryPredicate1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject FalseBP1D_Type; extern PyTypeObject FalseBP1D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_FalseBP1D; } BPy_FalseBP1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#include "BPy_Length2DBP1D.h" #include "BPy_Length2DBP1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -90,7 +86,3 @@ PyTypeObject Length2DBP1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_BinaryPredicate1D.h" #include "../BPy_BinaryPredicate1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Length2DBP1D_Type; extern PyTypeObject Length2DBP1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_Length2DBP1D; } BPy_Length2DBP1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#include "BPy_SameShapeIdBP1D.h" #include "BPy_SameShapeIdBP1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -89,7 +85,3 @@ PyTypeObject SameShapeIdBP1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_BinaryPredicate1D.h" #include "../BPy_BinaryPredicate1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject SameShapeIdBP1D_Type; extern PyTypeObject SameShapeIdBP1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_SameShapeIdBP1D; } BPy_SameShapeIdBP1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#include "BPy_TrueBP1D.h" #include "BPy_TrueBP1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -89,7 +85,3 @@ PyTypeObject TrueBP1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_BinaryPredicate1D.h" #include "../BPy_BinaryPredicate1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject TrueBP1D_Type; extern PyTypeObject TrueBP1D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_TrueBP1D; } BPy_TrueBP1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "../BPy_Convert.h" #include "../BPy_Convert.h"
#include "../BPy_IntegrationType.h" #include "../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -120,7 +116,3 @@ PyTypeObject ViewMapGradientNormBP1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_BinaryPredicate1D.h" #include "../BPy_BinaryPredicate1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ViewMapGradientNormBP1D_Type; extern PyTypeObject ViewMapGradientNormBP1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_ViewMapGradientNormBP1D; } BPy_ViewMapGradientNormBP1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "../BPy_Convert.h" #include "../BPy_Convert.h"
#include "../Interface0D/BPy_SVertex.h" #include "../Interface0D/BPy_SVertex.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -278,7 +274,3 @@ PyTypeObject CurvePoint_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../stroke/Curve.h" #include "../../stroke/Curve.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject CurvePoint_Type; extern PyTypeObject CurvePoint_Type;
@@ -29,7 +25,3 @@ typedef struct {
} BPy_CurvePoint; } BPy_CurvePoint;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -510,7 +506,3 @@ PyTypeObject SVertex_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../view_map/Silhouette.h" #include "../../view_map/Silhouette.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject SVertex_Type; extern PyTypeObject SVertex_Type;
@@ -33,7 +29,3 @@ typedef struct {
void SVertex_mathutils_register_callback(); void SVertex_mathutils_register_callback();
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../BPy_Nature.h" #include "../BPy_Nature.h"
#include "../Interface1D/BPy_ViewEdge.h" #include "../Interface1D/BPy_ViewEdge.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -202,7 +198,3 @@ PyTypeObject ViewVertex_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../view_map/ViewMap.h" #include "../../view_map/ViewMap.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ViewVertex_Type; extern PyTypeObject ViewVertex_Type;
@@ -29,7 +25,3 @@ typedef struct {
} BPy_ViewVertex; } BPy_ViewVertex;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "../../BPy_StrokeAttribute.h" #include "../../BPy_StrokeAttribute.h"
#include "../../Interface0D/BPy_SVertex.h" #include "../../Interface0D/BPy_SVertex.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -400,7 +396,3 @@ PyTypeObject StrokeVertex_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../../stroke/Stroke.h" #include "../../../stroke/Stroke.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject StrokeVertex_Type; extern PyTypeObject StrokeVertex_Type;
@@ -34,7 +30,3 @@ typedef struct {
void StrokeVertex_mathutils_register_callback(); void StrokeVertex_mathutils_register_callback();
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../BPy_SVertex.h" #include "../BPy_SVertex.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -140,7 +136,3 @@ PyTypeObject NonTVertex_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../../view_map/ViewMap.h" #include "../../../view_map/ViewMap.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject NonTVertex_Type; extern PyTypeObject NonTVertex_Type;
@@ -29,7 +25,3 @@ typedef struct {
} BPy_NonTVertex; } BPy_NonTVertex;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@
#include "../../Interface1D/BPy_ViewEdge.h" #include "../../Interface1D/BPy_ViewEdge.h"
#include "../BPy_SVertex.h" #include "../BPy_SVertex.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -259,7 +255,3 @@ PyTypeObject TVertex_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../../view_map/ViewMap.h" #include "../../../view_map/ViewMap.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject TVertex_Type; extern PyTypeObject TVertex_Type;
@@ -29,7 +25,3 @@ typedef struct {
} BPy_TVertex; } BPy_TVertex;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@
#include "../Interface0D/BPy_SVertex.h" #include "../Interface0D/BPy_SVertex.h"
#include "../Interface1D/BPy_ViewEdge.h" #include "../Interface1D/BPy_ViewEdge.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -398,7 +394,3 @@ PyTypeObject FEdge_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../view_map/Silhouette.h" #include "../../view_map/Silhouette.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject FEdge_Type; extern PyTypeObject FEdge_Type;
@@ -29,7 +25,3 @@ typedef struct {
} BPy_FEdge; } BPy_FEdge;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "../Interface0D/BPy_CurvePoint.h" #include "../Interface0D/BPy_CurvePoint.h"
#include "../Interface0D/BPy_SVertex.h" #include "../Interface0D/BPy_SVertex.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -228,7 +224,3 @@ PyTypeObject FrsCurve_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../stroke/Curve.h" #include "../../stroke/Curve.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject FrsCurve_Type; extern PyTypeObject FrsCurve_Type;
@@ -29,7 +25,3 @@ typedef struct {
} BPy_FrsCurve; } BPy_FrsCurve;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -17,10 +17,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -564,7 +560,3 @@ PyTypeObject Stroke_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../stroke/Stroke.h" #include "../../stroke/Stroke.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Stroke_Type; extern PyTypeObject Stroke_Type;
@@ -29,7 +25,3 @@ typedef struct {
} BPy_Stroke; } BPy_Stroke;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -16,10 +16,6 @@
#include "../Interface1D/BPy_FEdge.h" #include "../Interface1D/BPy_FEdge.h"
#include "../Interface1D/BPy_ViewEdge.h" #include "../Interface1D/BPy_ViewEdge.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -436,7 +432,3 @@ PyTypeObject ViewEdge_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../view_map/ViewMap.h" #include "../../view_map/ViewMap.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ViewEdge_Type; extern PyTypeObject ViewEdge_Type;
@@ -29,7 +25,3 @@ typedef struct {
} BPy_ViewEdge; } BPy_ViewEdge;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Id.h" #include "../../BPy_Id.h"
#include "../BPy_ViewEdge.h" #include "../BPy_ViewEdge.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -186,7 +182,3 @@ PyTypeObject Chain_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../../stroke/Chain.h" #include "../../../stroke/Chain.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Chain_Type; extern PyTypeObject Chain_Type;
@@ -29,7 +25,3 @@ typedef struct {
} BPy_Chain; } BPy_Chain;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -454,7 +450,3 @@ PyTypeObject FEdgeSharp_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../../view_map/Silhouette.h" #include "../../../view_map/Silhouette.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject FEdgeSharp_Type; extern PyTypeObject FEdgeSharp_Type;
@@ -33,7 +29,3 @@ typedef struct {
void FEdgeSharp_mathutils_register_callback(); void FEdgeSharp_mathutils_register_callback();
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -287,7 +283,3 @@ PyTypeObject FEdgeSmooth_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../../view_map/Silhouette.h" #include "../../../view_map/Silhouette.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject FEdgeSmooth_Type; extern PyTypeObject FEdgeSmooth_Type;
@@ -34,7 +30,3 @@ typedef struct {
void FEdgeSmooth_mathutils_register_callback(); void FEdgeSmooth_mathutils_register_callback();
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "../BPy_Convert.h" #include "../BPy_Convert.h"
#include "../Interface0D/BPy_ViewVertex.h" #include "../Interface0D/BPy_ViewVertex.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -219,7 +215,3 @@ PyTypeObject AdjacencyIterator_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../stroke/ChainingIterators.h" #include "../../stroke/ChainingIterators.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject AdjacencyIterator_Type; extern PyTypeObject AdjacencyIterator_Type;
@@ -31,7 +27,3 @@ typedef struct {
} BPy_AdjacencyIterator; } BPy_AdjacencyIterator;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "../BPy_UnaryPredicate1D.h" #include "../BPy_UnaryPredicate1D.h"
#include "../Interface1D/BPy_ViewEdge.h" #include "../Interface1D/BPy_ViewEdge.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -197,7 +193,3 @@ PyTypeObject ChainPredicateIterator_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../stroke/ChainingIterators.h" #include "../../stroke/ChainingIterators.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ChainPredicateIterator_Type; extern PyTypeObject ChainPredicateIterator_Type;
@@ -32,7 +28,3 @@ typedef struct {
} BPy_ChainPredicateIterator; } BPy_ChainPredicateIterator;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "../BPy_Convert.h" #include "../BPy_Convert.h"
#include "../Interface1D/BPy_ViewEdge.h" #include "../Interface1D/BPy_ViewEdge.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -152,7 +148,3 @@ PyTypeObject ChainSilhouetteIterator_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../stroke/ChainingIterators.h" #include "../../stroke/ChainingIterators.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ChainSilhouetteIterator_Type; extern PyTypeObject ChainSilhouetteIterator_Type;
@@ -30,7 +26,3 @@ typedef struct {
} BPy_ChainSilhouetteIterator; } BPy_ChainSilhouetteIterator;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "../Interface1D/BPy_ViewEdge.h" #include "../Interface1D/BPy_ViewEdge.h"
#include "BPy_AdjacencyIterator.h" #include "BPy_AdjacencyIterator.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -295,7 +291,3 @@ PyTypeObject ChainingIterator_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../stroke/ChainingIterators.h" #include "../../stroke/ChainingIterators.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ChainingIterator_Type; extern PyTypeObject ChainingIterator_Type;
@@ -30,7 +26,3 @@ typedef struct {
} BPy_ChainingIterator; } BPy_ChainingIterator;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "../BPy_Convert.h" #include "../BPy_Convert.h"
#include "BPy_Interface0DIterator.h" #include "BPy_Interface0DIterator.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -172,7 +168,3 @@ PyTypeObject CurvePointIterator_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../stroke/CurveIterators.h" #include "../../stroke/CurveIterators.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject CurvePointIterator_Type; extern PyTypeObject CurvePointIterator_Type;
@@ -30,7 +26,3 @@ typedef struct {
} BPy_CurvePointIterator; } BPy_CurvePointIterator;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "../BPy_Convert.h" #include "../BPy_Convert.h"
#include "../BPy_Interface1D.h" #include "../BPy_Interface1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -248,7 +244,3 @@ PyTypeObject Interface0DIterator_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../view_map/Interface0D.h" #include "../../view_map/Interface0D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Interface0DIterator_Type; extern PyTypeObject Interface0DIterator_Type;
@@ -32,7 +28,3 @@ typedef struct {
} BPy_Interface0DIterator; } BPy_Interface0DIterator;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../Interface0D/BPy_SVertex.h" #include "../Interface0D/BPy_SVertex.h"
#include "../Interface1D/BPy_FEdge.h" #include "../Interface1D/BPy_FEdge.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -198,7 +194,3 @@ PyTypeObject SVertexIterator_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../view_map/ViewMapIterators.h" #include "../../view_map/ViewMapIterators.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject SVertexIterator_Type; extern PyTypeObject SVertexIterator_Type;
@@ -30,7 +26,3 @@ typedef struct {
} BPy_SVertexIterator; } BPy_SVertexIterator;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../Interface1D/BPy_Stroke.h" #include "../Interface1D/BPy_Stroke.h"
#include "BPy_Interface0DIterator.h" #include "BPy_Interface0DIterator.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -338,7 +334,3 @@ PyTypeObject StrokeVertexIterator_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../stroke/StrokeIterators.h" #include "../../stroke/StrokeIterators.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject StrokeVertexIterator_Type; extern PyTypeObject StrokeVertexIterator_Type;
@@ -33,7 +29,3 @@ typedef struct {
} BPy_StrokeVertexIterator; } BPy_StrokeVertexIterator;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "../BPy_Convert.h" #include "../BPy_Convert.h"
#include "../Interface1D/BPy_ViewEdge.h" #include "../Interface1D/BPy_ViewEdge.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -279,7 +275,3 @@ PyTypeObject ViewEdgeIterator_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../view_map/ViewMapIterators.h" #include "../../view_map/ViewMapIterators.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ViewEdgeIterator_Type; extern PyTypeObject ViewEdgeIterator_Type;
@@ -30,7 +26,3 @@ typedef struct {
} BPy_ViewEdgeIterator; } BPy_ViewEdgeIterator;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_Convert.h" #include "../BPy_Convert.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -176,7 +172,3 @@ PyTypeObject orientedViewEdgeIterator_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../view_map/ViewMapIterators.h" #include "../../view_map/ViewMapIterators.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject orientedViewEdgeIterator_Type; extern PyTypeObject orientedViewEdgeIterator_Type;
@@ -32,7 +28,3 @@ typedef struct {
} BPy_orientedViewEdgeIterator; } BPy_orientedViewEdgeIterator;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/BasicStrokeShaders.h" #include "../../stroke/BasicStrokeShaders.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -100,7 +96,3 @@ PyTypeObject BackboneStretcherShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject BackboneStretcherShader_Type; extern PyTypeObject BackboneStretcherShader_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_BackboneStretcherShader; } BPy_BackboneStretcherShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/BasicStrokeShaders.h" #include "../../stroke/BasicStrokeShaders.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -100,7 +96,3 @@ PyTypeObject BezierCurveShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject BezierCurveShader_Type; extern PyTypeObject BezierCurveShader_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_BezierCurveShader; } BPy_BezierCurveShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../../../python/generic/py_capi_utils.hh" #include "../../../../python/generic/py_capi_utils.hh"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -120,7 +116,3 @@ PyTypeObject BlenderTextureShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#include <Python.h> #include <Python.h>
@@ -29,7 +25,3 @@ typedef struct {
} BPy_BlenderTextureShader; } BPy_BlenderTextureShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "../../stroke/AdvancedStrokeShaders.h" #include "../../stroke/AdvancedStrokeShaders.h"
#include "../BPy_Convert.h" #include "../BPy_Convert.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -119,7 +115,3 @@ PyTypeObject CalligraphicShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject CalligraphicShader_Type; extern PyTypeObject CalligraphicShader_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_CalligraphicShader; } BPy_CalligraphicShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/BasicStrokeShaders.h" #include "../../stroke/BasicStrokeShaders.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -99,7 +95,3 @@ PyTypeObject ColorNoiseShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ColorNoiseShader_Type; extern PyTypeObject ColorNoiseShader_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_ColorNoiseShader; } BPy_ColorNoiseShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/BasicStrokeShaders.h" #include "../../stroke/BasicStrokeShaders.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -105,7 +101,3 @@ PyTypeObject ConstantColorShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ConstantColorShader_Type; extern PyTypeObject ConstantColorShader_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_ConstantColorShader; } BPy_ConstantColorShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/BasicStrokeShaders.h" #include "../../stroke/BasicStrokeShaders.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -99,7 +95,3 @@ PyTypeObject ConstantThicknessShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ConstantThicknessShader_Type; extern PyTypeObject ConstantThicknessShader_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_ConstantThicknessShader; } BPy_ConstantThicknessShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/BasicStrokeShaders.h" #include "../../stroke/BasicStrokeShaders.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -105,7 +101,3 @@ PyTypeObject ConstrainedIncreasingThicknessShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ConstrainedIncreasingThicknessShader_Type; extern PyTypeObject ConstrainedIncreasingThicknessShader_Type;
@@ -28,7 +24,3 @@ typedef struct {
} BPy_ConstrainedIncreasingThicknessShader; } BPy_ConstrainedIncreasingThicknessShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/BasicStrokeShaders.h" #include "../../stroke/BasicStrokeShaders.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -107,7 +103,3 @@ PyTypeObject GuidingLinesShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GuidingLinesShader_Type; extern PyTypeObject GuidingLinesShader_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GuidingLinesShader; } BPy_GuidingLinesShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/BasicStrokeShaders.h" #include "../../stroke/BasicStrokeShaders.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -128,7 +124,3 @@ PyTypeObject IncreasingColorShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject IncreasingColorShader_Type; extern PyTypeObject IncreasingColorShader_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_IncreasingColorShader; } BPy_IncreasingColorShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/BasicStrokeShaders.h" #include "../../stroke/BasicStrokeShaders.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -105,7 +101,3 @@ PyTypeObject IncreasingThicknessShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject IncreasingThicknessShader_Type; extern PyTypeObject IncreasingThicknessShader_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_IncreasingThicknessShader; } BPy_IncreasingThicknessShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/BasicStrokeShaders.h" #include "../../stroke/BasicStrokeShaders.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -106,7 +102,3 @@ PyTypeObject PolygonalizationShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject PolygonalizationShader_Type; extern PyTypeObject PolygonalizationShader_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_PolygonalizationShader; } BPy_PolygonalizationShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/BasicStrokeShaders.h" #include "../../stroke/BasicStrokeShaders.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -97,7 +93,3 @@ PyTypeObject SamplingShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject SamplingShader_Type; extern PyTypeObject SamplingShader_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_SamplingShader; } BPy_SamplingShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/AdvancedStrokeShaders.h" #include "../../stroke/AdvancedStrokeShaders.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -130,7 +126,3 @@ PyTypeObject SmoothingShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject SmoothingShader_Type; extern PyTypeObject SmoothingShader_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_SmoothingShader; } BPy_SmoothingShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -11,10 +11,6 @@
#include "../../stroke/AdvancedStrokeShaders.h" #include "../../stroke/AdvancedStrokeShaders.h"
#include "../BPy_Convert.h" #include "../BPy_Convert.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -124,7 +120,3 @@ PyTypeObject SpatialNoiseShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject SpatialNoiseShader_Type; extern PyTypeObject SpatialNoiseShader_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_SpatialNoiseShader; } BPy_SpatialNoiseShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/BasicStrokeShaders.h" #include "../../stroke/BasicStrokeShaders.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -99,7 +95,3 @@ PyTypeObject StrokeTextureStepShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#include <Python.h> #include <Python.h>
@@ -29,7 +25,3 @@ typedef struct {
} BPy_StrokeTextureStepShader; } BPy_StrokeTextureStepShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/BasicStrokeShaders.h" #include "../../stroke/BasicStrokeShaders.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -101,7 +97,3 @@ PyTypeObject ThicknessNoiseShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ThicknessNoiseShader_Type; extern PyTypeObject ThicknessNoiseShader_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_ThicknessNoiseShader; } BPy_ThicknessNoiseShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/BasicStrokeShaders.h" #include "../../stroke/BasicStrokeShaders.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -98,7 +94,3 @@ PyTypeObject TipRemoverShader_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_StrokeShader.h" #include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject TipRemoverShader_Type; extern PyTypeObject TipRemoverShader_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_TipRemoverShader; } BPy_TipRemoverShader;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -22,10 +22,6 @@
#include "UnaryFunction0D_double/BPy_LocalAverageDepthF0D.h" #include "UnaryFunction0D_double/BPy_LocalAverageDepthF0D.h"
#include "UnaryFunction0D_double/BPy_ZDiscontinuityF0D.h" #include "UnaryFunction0D_double/BPy_ZDiscontinuityF0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -206,7 +202,3 @@ PyTypeObject UnaryFunction0DDouble_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0D.h" #include "../BPy_UnaryFunction0D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction0DDouble_Type; extern PyTypeObject UnaryFunction0DDouble_Type;
@@ -31,7 +27,3 @@ typedef struct {
int UnaryFunction0DDouble_Init(PyObject *module); int UnaryFunction0DDouble_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "UnaryFunction0D_Nature_EdgeNature/BPy_CurveNatureF0D.h" #include "UnaryFunction0D_Nature_EdgeNature/BPy_CurveNatureF0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -154,7 +150,3 @@ PyTypeObject UnaryFunction0DEdgeNature_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../winged_edge/Nature.h" #include "../../winged_edge/Nature.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction0DEdgeNature_Type; extern PyTypeObject UnaryFunction0DEdgeNature_Type;
@@ -33,7 +29,3 @@ typedef struct {
int UnaryFunction0DEdgeNature_Init(PyObject *module); int UnaryFunction0DEdgeNature_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -18,10 +18,6 @@
#include "UnaryFunction0D_float/BPy_ReadMapPixelF0D.h" #include "UnaryFunction0D_float/BPy_ReadMapPixelF0D.h"
#include "UnaryFunction0D_float/BPy_ReadSteerableViewMapPixelF0D.h" #include "UnaryFunction0D_float/BPy_ReadSteerableViewMapPixelF0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -186,7 +182,3 @@ PyTypeObject UnaryFunction0DFloat_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0D.h" #include "../BPy_UnaryFunction0D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction0DFloat_Type; extern PyTypeObject UnaryFunction0DFloat_Type;
@@ -31,7 +27,3 @@ typedef struct {
int UnaryFunction0DFloat_Init(PyObject *module); int UnaryFunction0DFloat_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "UnaryFunction0D_Id/BPy_ShapeIdF0D.h" #include "UnaryFunction0D_Id/BPy_ShapeIdF0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -150,7 +146,3 @@ PyTypeObject UnaryFunction0DId_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../system/Id.h" #include "../../system/Id.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction0DId_Type; extern PyTypeObject UnaryFunction0DId_Type;
@@ -33,7 +29,3 @@ typedef struct {
int UnaryFunction0DId_Init(PyObject *module); int UnaryFunction0DId_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "UnaryFunction0D_Material/BPy_MaterialF0D.h" #include "UnaryFunction0D_Material/BPy_MaterialF0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -154,7 +150,3 @@ PyTypeObject UnaryFunction0DMaterial_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../scene_graph/FrsMaterial.h" #include "../../scene_graph/FrsMaterial.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction0DMaterial_Type; extern PyTypeObject UnaryFunction0DMaterial_Type;
@@ -33,7 +29,3 @@ typedef struct {
int UnaryFunction0DMaterial_Init(PyObject *module); int UnaryFunction0DMaterial_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -15,10 +15,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -157,7 +153,3 @@ PyTypeObject UnaryFunction0DUnsigned_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0D.h" #include "../BPy_UnaryFunction0D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction0DUnsigned_Type; extern PyTypeObject UnaryFunction0DUnsigned_Type;
@@ -31,7 +27,3 @@ typedef struct {
int UnaryFunction0DUnsigned_Init(PyObject *module); int UnaryFunction0DUnsigned_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@
#include "UnaryFunction0D_Vec2f/BPy_Normal2DF0D.h" #include "UnaryFunction0D_Vec2f/BPy_Normal2DF0D.h"
#include "UnaryFunction0D_Vec2f/BPy_VertexOrientation2DF0D.h" #include "UnaryFunction0D_Vec2f/BPy_VertexOrientation2DF0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -159,7 +155,3 @@ PyTypeObject UnaryFunction0DVec2f_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../geometry/Geom.h" #include "../../geometry/Geom.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction0DVec2f_Type; extern PyTypeObject UnaryFunction0DVec2f_Type;
@@ -33,7 +29,3 @@ typedef struct {
int UnaryFunction0DVec2f_Init(PyObject *module); int UnaryFunction0DVec2f_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "UnaryFunction0D_Vec3f/BPy_VertexOrientation3DF0D.h" #include "UnaryFunction0D_Vec3f/BPy_VertexOrientation3DF0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -153,7 +149,3 @@ PyTypeObject UnaryFunction0DVec3f_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../geometry/Geom.h" #include "../../geometry/Geom.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction0DVec3f_Type; extern PyTypeObject UnaryFunction0DVec3f_Type;
@@ -33,7 +29,3 @@ typedef struct {
int UnaryFunction0DVec3f_Init(PyObject *module); int UnaryFunction0DVec3f_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -15,10 +15,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -165,7 +161,3 @@ PyTypeObject UnaryFunction0DVectorViewShape_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "../../view_map/ViewMap.h" #include "../../view_map/ViewMap.h"
#include <vector> #include <vector>
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction0DVectorViewShape_Type; extern PyTypeObject UnaryFunction0DVectorViewShape_Type;
@@ -36,7 +32,3 @@ typedef struct {
int UnaryFunction0DVectorViewShape_Init(PyObject *module); int UnaryFunction0DVectorViewShape_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@
#include "UnaryFunction0D_ViewShape/BPy_GetOccludeeF0D.h" #include "UnaryFunction0D_ViewShape/BPy_GetOccludeeF0D.h"
#include "UnaryFunction0D_ViewShape/BPy_GetShapeF0D.h" #include "UnaryFunction0D_ViewShape/BPy_GetShapeF0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -160,7 +156,3 @@ PyTypeObject UnaryFunction0DViewShape_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../view_map/ViewMap.h" #include "../../view_map/ViewMap.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction0DViewShape_Type; extern PyTypeObject UnaryFunction0DViewShape_Type;
@@ -33,7 +29,3 @@ typedef struct {
int UnaryFunction0DViewShape_Init(PyObject *module); int UnaryFunction0DViewShape_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -103,7 +99,3 @@ PyTypeObject ShapeIdF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DId.h" #include "../BPy_UnaryFunction0DId.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ShapeIdF0D_Type; extern PyTypeObject ShapeIdF0D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_ShapeIdF0D; } BPy_ShapeIdF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -106,7 +102,3 @@ PyTypeObject MaterialF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DMaterial.h" #include "../BPy_UnaryFunction0DMaterial.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject MaterialF0D_Type; extern PyTypeObject MaterialF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_MaterialF0D; } BPy_MaterialF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -97,7 +93,3 @@ PyTypeObject CurveNatureF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DEdgeNature.h" #include "../BPy_UnaryFunction0DEdgeNature.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject CurveNatureF0D_Type; extern PyTypeObject CurveNatureF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_CurveNatureF0D; } BPy_CurveNatureF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -99,7 +95,3 @@ PyTypeObject Normal2DF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DVec2f.h" #include "../BPy_UnaryFunction0DVec2f.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Normal2DF0D_Type; extern PyTypeObject Normal2DF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_Normal2DF0D; } BPy_Normal2DF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -101,7 +97,3 @@ PyTypeObject VertexOrientation2DF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DVec2f.h" #include "../BPy_UnaryFunction0DVec2f.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject VertexOrientation2DF0D_Type; extern PyTypeObject VertexOrientation2DF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_VertexOrientation2DF0D; } BPy_VertexOrientation2DF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -101,7 +97,3 @@ PyTypeObject VertexOrientation3DF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DVec3f.h" #include "../BPy_UnaryFunction0DVec3f.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject VertexOrientation3DF0D_Type; extern PyTypeObject VertexOrientation3DF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_VertexOrientation3DF0D; } BPy_VertexOrientation3DF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -96,7 +92,3 @@ PyTypeObject GetOccludeeF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DViewShape.h" #include "../BPy_UnaryFunction0DViewShape.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetOccludeeF0D_Type; extern PyTypeObject GetOccludeeF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetOccludeeF0D; } BPy_GetOccludeeF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -96,7 +92,3 @@ PyTypeObject GetShapeF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DViewShape.h" #include "../BPy_UnaryFunction0DViewShape.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetShapeF0D_Type; extern PyTypeObject GetShapeF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetShapeF0D; } BPy_GetShapeF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -101,7 +97,3 @@ PyTypeObject Curvature2DAngleF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DDouble.h" #include "../BPy_UnaryFunction0DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Curvature2DAngleF0D_Type; extern PyTypeObject Curvature2DAngleF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_Curvature2DAngleF0D; } BPy_Curvature2DAngleF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../stroke/AdvancedFunctions0D.h" #include "../../../stroke/AdvancedFunctions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -106,7 +102,3 @@ PyTypeObject DensityF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DDouble.h" #include "../BPy_UnaryFunction0DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject DensityF0D_Type; extern PyTypeObject DensityF0D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_DensityF0D; } BPy_DensityF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -96,7 +92,3 @@ PyTypeObject GetProjectedXF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DDouble.h" #include "../BPy_UnaryFunction0DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetProjectedXF0D_Type; extern PyTypeObject GetProjectedXF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetProjectedXF0D; } BPy_GetProjectedXF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -96,7 +92,3 @@ PyTypeObject GetProjectedYF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DDouble.h" #include "../BPy_UnaryFunction0DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetProjectedYF0D_Type; extern PyTypeObject GetProjectedYF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetProjectedYF0D; } BPy_GetProjectedYF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -96,7 +92,3 @@ PyTypeObject GetProjectedZF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DDouble.h" #include "../BPy_UnaryFunction0DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetProjectedZF0D_Type; extern PyTypeObject GetProjectedZF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetProjectedZF0D; } BPy_GetProjectedZF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -96,7 +92,3 @@ PyTypeObject GetXF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DDouble.h" #include "../BPy_UnaryFunction0DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetXF0D_Type; extern PyTypeObject GetXF0D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_GetXF0D; } BPy_GetXF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -96,7 +92,3 @@ PyTypeObject GetYF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DDouble.h" #include "../BPy_UnaryFunction0DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetYF0D_Type; extern PyTypeObject GetYF0D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_GetYF0D; } BPy_GetYF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -96,7 +92,3 @@ PyTypeObject GetZF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DDouble.h" #include "../BPy_UnaryFunction0DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetZF0D_Type; extern PyTypeObject GetZF0D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_GetZF0D; } BPy_GetZF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../stroke/AdvancedFunctions0D.h" #include "../../../stroke/AdvancedFunctions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -104,7 +100,3 @@ PyTypeObject LocalAverageDepthF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DDouble.h" #include "../BPy_UnaryFunction0DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject LocalAverageDepthF0D_Type; extern PyTypeObject LocalAverageDepthF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_LocalAverageDepthF0D; } BPy_LocalAverageDepthF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -101,7 +97,3 @@ PyTypeObject ZDiscontinuityF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DDouble.h" #include "../BPy_UnaryFunction0DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ZDiscontinuityF0D_Type; extern PyTypeObject ZDiscontinuityF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_ZDiscontinuityF0D; } BPy_ZDiscontinuityF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -99,7 +95,3 @@ PyTypeObject GetCurvilinearAbscissaF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DFloat.h" #include "../BPy_UnaryFunction0DFloat.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetCurvilinearAbscissaF0D_Type; extern PyTypeObject GetCurvilinearAbscissaF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetCurvilinearAbscissaF0D; } BPy_GetCurvilinearAbscissaF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -96,7 +92,3 @@ PyTypeObject GetParameterF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DFloat.h" #include "../BPy_UnaryFunction0DFloat.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetParameterF0D_Type; extern PyTypeObject GetParameterF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetParameterF0D; } BPy_GetParameterF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../stroke/AdvancedFunctions0D.h" #include "../../../stroke/AdvancedFunctions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -104,7 +100,3 @@ PyTypeObject GetViewMapGradientNormF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DFloat.h" #include "../BPy_UnaryFunction0DFloat.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetViewMapGradientNormF0D_Type; extern PyTypeObject GetViewMapGradientNormF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetViewMapGradientNormF0D; } BPy_GetViewMapGradientNormF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../stroke/AdvancedFunctions0D.h" #include "../../../stroke/AdvancedFunctions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -102,7 +98,3 @@ PyTypeObject ReadCompleteViewMapPixelF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DFloat.h" #include "../BPy_UnaryFunction0DFloat.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ReadCompleteViewMapPixelF0D_Type; extern PyTypeObject ReadCompleteViewMapPixelF0D_Type;
@@ -28,7 +24,3 @@ typedef struct {
} BPy_ReadCompleteViewMapPixelF0D; } BPy_ReadCompleteViewMapPixelF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../stroke/AdvancedFunctions0D.h" #include "../../../stroke/AdvancedFunctions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -103,7 +99,3 @@ PyTypeObject ReadMapPixelF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DFloat.h" #include "../BPy_UnaryFunction0DFloat.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ReadMapPixelF0D_Type; extern PyTypeObject ReadMapPixelF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_ReadMapPixelF0D; } BPy_ReadMapPixelF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -108,7 +104,3 @@ PyTypeObject ReadSteerableViewMapPixelF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DFloat.h" #include "../BPy_UnaryFunction0DFloat.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ReadSteerableViewMapPixelF0D_Type; extern PyTypeObject ReadSteerableViewMapPixelF0D_Type;
@@ -28,7 +24,3 @@ typedef struct {
} BPy_ReadSteerableViewMapPixelF0D; } BPy_ReadSteerableViewMapPixelF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -104,7 +100,3 @@ PyTypeObject QuantitativeInvisibilityF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DUnsigned.h" #include "../BPy_UnaryFunction0DUnsigned.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject QuantitativeInvisibilityF0D_Type; extern PyTypeObject QuantitativeInvisibilityF0D_Type;
@@ -28,7 +24,3 @@ typedef struct {
} BPy_QuantitativeInvisibilityF0D; } BPy_QuantitativeInvisibilityF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../../view_map/Functions0D.h" #include "../../../view_map/Functions0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -97,7 +93,3 @@ PyTypeObject GetOccludersF0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction0DVectorViewShape.h" #include "../BPy_UnaryFunction0DVectorViewShape.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetOccludersF0D_Type; extern PyTypeObject GetOccludersF0D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetOccludersF0D; } BPy_GetOccludersF0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -27,10 +27,6 @@
#include "UnaryFunction1D_double/BPy_LocalAverageDepthF1D.h" #include "UnaryFunction1D_double/BPy_LocalAverageDepthF1D.h"
#include "UnaryFunction1D_double/BPy_ZDiscontinuityF1D.h" #include "UnaryFunction1D_double/BPy_ZDiscontinuityF1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -285,7 +281,3 @@ PyTypeObject UnaryFunction1DDouble_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1D.h" #include "../BPy_UnaryFunction1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction1DDouble_Type; extern PyTypeObject UnaryFunction1DDouble_Type;
@@ -31,7 +27,3 @@ typedef struct {
int UnaryFunction1DDouble_Init(PyObject *module); int UnaryFunction1DDouble_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@
#include "UnaryFunction1D_Nature_EdgeNature/BPy_CurveNatureF1D.h" #include "UnaryFunction1D_Nature_EdgeNature/BPy_CurveNatureF1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -205,7 +201,3 @@ PyTypeObject UnaryFunction1DEdgeNature_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../winged_edge/Nature.h" #include "../../winged_edge/Nature.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction1DEdgeNature_Type; extern PyTypeObject UnaryFunction1DEdgeNature_Type;
@@ -33,7 +29,3 @@ typedef struct {
int UnaryFunction1DEdgeNature_Init(PyObject *module); int UnaryFunction1DEdgeNature_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../BPy_IntegrationType.h" #include "../BPy_IntegrationType.h"
#include "../BPy_Interface1D.h" #include "../BPy_Interface1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -195,7 +191,3 @@ PyTypeObject UnaryFunction1DFloat_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1D.h" #include "../BPy_UnaryFunction1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction1DFloat_Type; extern PyTypeObject UnaryFunction1DFloat_Type;
@@ -31,7 +27,3 @@ typedef struct {
int UnaryFunction1DFloat_Init(PyObject *module); int UnaryFunction1DFloat_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -16,10 +16,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -207,7 +203,3 @@ PyTypeObject UnaryFunction1DUnsigned_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1D.h" #include "../BPy_UnaryFunction1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction1DUnsigned_Type; extern PyTypeObject UnaryFunction1DUnsigned_Type;
@@ -31,7 +27,3 @@ typedef struct {
int UnaryFunction1DUnsigned_Init(PyObject *module); int UnaryFunction1DUnsigned_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -15,10 +15,6 @@
#include "UnaryFunction1D_Vec2f/BPy_Normal2DF1D.h" #include "UnaryFunction1D_Vec2f/BPy_Normal2DF1D.h"
#include "UnaryFunction1D_Vec2f/BPy_Orientation2DF1D.h" #include "UnaryFunction1D_Vec2f/BPy_Orientation2DF1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -208,7 +204,3 @@ PyTypeObject UnaryFunction1DVec2f_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../geometry/Geom.h" #include "../../geometry/Geom.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction1DVec2f_Type; extern PyTypeObject UnaryFunction1DVec2f_Type;
@@ -33,7 +29,3 @@ typedef struct {
int UnaryFunction1DVec2f_Init(PyObject *module); int UnaryFunction1DVec2f_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@
#include "UnaryFunction1D_Vec3f/BPy_Orientation3DF1D.h" #include "UnaryFunction1D_Vec3f/BPy_Orientation3DF1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -202,7 +198,3 @@ PyTypeObject UnaryFunction1DVec3f_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../geometry/Geom.h" #include "../../geometry/Geom.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction1DVec3f_Type; extern PyTypeObject UnaryFunction1DVec3f_Type;
@@ -33,7 +29,3 @@ typedef struct {
int UnaryFunction1DVec3f_Init(PyObject *module); int UnaryFunction1DVec3f_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -18,10 +18,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -229,7 +225,3 @@ PyTypeObject UnaryFunction1DVectorViewShape_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "../../view_map/ViewMap.h" #include "../../view_map/ViewMap.h"
#include <vector> #include <vector>
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction1DVectorViewShape_Type; extern PyTypeObject UnaryFunction1DVectorViewShape_Type;
@@ -36,7 +32,3 @@ typedef struct {
int UnaryFunction1DVectorViewShape_Init(PyObject *module); int UnaryFunction1DVectorViewShape_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -16,10 +16,6 @@
#include "UnaryFunction1D_void/BPy_IncrementChainingTimeStampF1D.h" #include "UnaryFunction1D_void/BPy_IncrementChainingTimeStampF1D.h"
#include "UnaryFunction1D_void/BPy_TimeStampF1D.h" #include "UnaryFunction1D_void/BPy_TimeStampF1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -213,7 +209,3 @@ PyTypeObject UnaryFunction1DVoid_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1D.h" #include "../BPy_UnaryFunction1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject UnaryFunction1DVoid_Type; extern PyTypeObject UnaryFunction1DVoid_Type;
@@ -31,7 +27,3 @@ typedef struct {
int UnaryFunction1DVoid_Init(PyObject *module); int UnaryFunction1DVoid_Init(PyObject *module);
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -110,7 +106,3 @@ PyTypeObject CurveNatureF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DEdgeNature.h" #include "../BPy_UnaryFunction1DEdgeNature.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject CurveNatureF1D_Type; extern PyTypeObject CurveNatureF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_CurveNatureF1D; } BPy_CurveNatureF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -104,7 +100,3 @@ PyTypeObject Normal2DF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DVec2f.h" #include "../BPy_UnaryFunction1DVec2f.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Normal2DF1D_Type; extern PyTypeObject Normal2DF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_Normal2DF1D; } BPy_Normal2DF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -104,7 +100,3 @@ PyTypeObject Orientation2DF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DVec2f.h" #include "../BPy_UnaryFunction1DVec2f.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Orientation2DF1D_Type; extern PyTypeObject Orientation2DF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_Orientation2DF1D; } BPy_Orientation2DF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -104,7 +100,3 @@ PyTypeObject Orientation3DF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DVec3f.h" #include "../BPy_UnaryFunction1DVec3f.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Orientation3DF1D_Type; extern PyTypeObject Orientation3DF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_Orientation3DF1D; } BPy_Orientation3DF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -105,7 +101,3 @@ PyTypeObject Curvature2DAngleF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DDouble.h" #include "../BPy_UnaryFunction1DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Curvature2DAngleF1D_Type; extern PyTypeObject Curvature2DAngleF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_Curvature2DAngleF1D; } BPy_Curvature2DAngleF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -118,7 +114,3 @@ PyTypeObject DensityF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DDouble.h" #include "../BPy_UnaryFunction1DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject DensityF1D_Type; extern PyTypeObject DensityF1D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_DensityF1D; } BPy_DensityF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -122,7 +118,3 @@ PyTypeObject GetCompleteViewMapDensityF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DDouble.h" #include "../BPy_UnaryFunction1DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetCompleteViewMapDensityF1D_Type; extern PyTypeObject GetCompleteViewMapDensityF1D_Type;
@@ -28,7 +24,3 @@ typedef struct {
} BPy_GetCompleteViewMapDensityF1D; } BPy_GetCompleteViewMapDensityF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -131,7 +127,3 @@ PyTypeObject GetDirectionalViewMapDensityF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DDouble.h" #include "../BPy_UnaryFunction1DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetDirectionalViewMapDensityF1D_Type; extern PyTypeObject GetDirectionalViewMapDensityF1D_Type;
@@ -28,7 +24,3 @@ typedef struct {
} BPy_GetDirectionalViewMapDensityF1D; } BPy_GetDirectionalViewMapDensityF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -104,7 +100,3 @@ PyTypeObject GetProjectedXF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DDouble.h" #include "../BPy_UnaryFunction1DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetProjectedXF1D_Type; extern PyTypeObject GetProjectedXF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetProjectedXF1D; } BPy_GetProjectedXF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -104,7 +100,3 @@ PyTypeObject GetProjectedYF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DDouble.h" #include "../BPy_UnaryFunction1DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetProjectedYF1D_Type; extern PyTypeObject GetProjectedYF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetProjectedYF1D; } BPy_GetProjectedYF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -104,7 +100,3 @@ PyTypeObject GetProjectedZF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DDouble.h" #include "../BPy_UnaryFunction1DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetProjectedZF1D_Type; extern PyTypeObject GetProjectedZF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetProjectedZF1D; } BPy_GetProjectedZF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -119,7 +115,3 @@ PyTypeObject GetSteerableViewMapDensityF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DDouble.h" #include "../BPy_UnaryFunction1DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetSteerableViewMapDensityF1D_Type; extern PyTypeObject GetSteerableViewMapDensityF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetSteerableViewMapDensityF1D; } BPy_GetSteerableViewMapDensityF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -119,7 +115,3 @@ PyTypeObject GetViewMapGradientNormF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DDouble.h" #include "../BPy_UnaryFunction1DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetViewMapGradientNormF1D_Type; extern PyTypeObject GetViewMapGradientNormF1D_Type;
@@ -28,7 +24,3 @@ typedef struct {
} BPy_GetViewMapGradientNormF1D; } BPy_GetViewMapGradientNormF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -104,7 +100,3 @@ PyTypeObject GetXF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DDouble.h" #include "../BPy_UnaryFunction1DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetXF1D_Type; extern PyTypeObject GetXF1D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_GetXF1D; } BPy_GetXF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -103,7 +99,3 @@ PyTypeObject GetYF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DDouble.h" #include "../BPy_UnaryFunction1DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetYF1D_Type; extern PyTypeObject GetYF1D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_GetYF1D; } BPy_GetYF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -104,7 +100,3 @@ PyTypeObject GetZF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DDouble.h" #include "../BPy_UnaryFunction1DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetZF1D_Type; extern PyTypeObject GetZF1D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_GetZF1D; } BPy_GetZF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -114,7 +110,3 @@ PyTypeObject LocalAverageDepthF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DDouble.h" #include "../BPy_UnaryFunction1DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject LocalAverageDepthF1D_Type; extern PyTypeObject LocalAverageDepthF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_LocalAverageDepthF1D; } BPy_LocalAverageDepthF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -108,7 +104,3 @@ PyTypeObject ZDiscontinuityF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DDouble.h" #include "../BPy_UnaryFunction1DDouble.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ZDiscontinuityF1D_Type; extern PyTypeObject ZDiscontinuityF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_ZDiscontinuityF1D; } BPy_ZDiscontinuityF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -110,7 +106,3 @@ PyTypeObject QuantitativeInvisibilityF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DUnsigned.h" #include "../BPy_UnaryFunction1DUnsigned.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject QuantitativeInvisibilityF1D_Type; extern PyTypeObject QuantitativeInvisibilityF1D_Type;
@@ -28,7 +24,3 @@ typedef struct {
} BPy_QuantitativeInvisibilityF1D; } BPy_QuantitativeInvisibilityF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -96,7 +92,3 @@ PyTypeObject GetOccludeeF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DVectorViewShape.h" #include "../BPy_UnaryFunction1DVectorViewShape.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetOccludeeF1D_Type; extern PyTypeObject GetOccludeeF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetOccludeeF1D; } BPy_GetOccludeeF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -96,7 +92,3 @@ PyTypeObject GetOccludersF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DVectorViewShape.h" #include "../BPy_UnaryFunction1DVectorViewShape.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetOccludersF1D_Type; extern PyTypeObject GetOccludersF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetOccludersF1D; } BPy_GetOccludersF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -96,7 +92,3 @@ PyTypeObject GetShapeF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DVectorViewShape.h" #include "../BPy_UnaryFunction1DVectorViewShape.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject GetShapeF1D_Type; extern PyTypeObject GetShapeF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_GetShapeF1D; } BPy_GetShapeF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -96,7 +92,3 @@ PyTypeObject ChainingTimeStampF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DVoid.h" #include "../BPy_UnaryFunction1DVoid.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ChainingTimeStampF1D_Type; extern PyTypeObject ChainingTimeStampF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_ChainingTimeStampF1D; } BPy_ChainingTimeStampF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -96,7 +92,3 @@ PyTypeObject IncrementChainingTimeStampF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DVoid.h" #include "../BPy_UnaryFunction1DVoid.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject IncrementChainingTimeStampF1D_Type; extern PyTypeObject IncrementChainingTimeStampF1D_Type;
@@ -28,7 +24,3 @@ typedef struct {
} BPy_IncrementChainingTimeStampF1D; } BPy_IncrementChainingTimeStampF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include "../../BPy_Convert.h" #include "../../BPy_Convert.h"
#include "../../BPy_IntegrationType.h" #include "../../BPy_IntegrationType.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -94,7 +90,3 @@ PyTypeObject TimeStampF1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryFunction1DVoid.h" #include "../BPy_UnaryFunction1DVoid.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject TimeStampF1D_Type; extern PyTypeObject TimeStampF1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_TimeStampF1D; } BPy_TimeStampF1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#include "BPy_FalseUP0D.h" #include "BPy_FalseUP0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -87,7 +83,3 @@ PyTypeObject FalseUP0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryPredicate0D.h" #include "../BPy_UnaryPredicate0D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject FalseUP0D_Type; extern PyTypeObject FalseUP0D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_FalseUP0D; } BPy_FalseUP0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#include "BPy_TrueUP0D.h" #include "BPy_TrueUP0D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -87,7 +83,3 @@ PyTypeObject TrueUP0D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryPredicate0D.h" #include "../BPy_UnaryPredicate0D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject TrueUP0D_Type; extern PyTypeObject TrueUP0D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_TrueUP0D; } BPy_TrueUP0D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#include "BPy_ContourUP1D.h" #include "BPy_ContourUP1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -88,7 +84,3 @@ PyTypeObject ContourUP1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryPredicate1D.h" #include "../BPy_UnaryPredicate1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ContourUP1D_Type; extern PyTypeObject ContourUP1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_ContourUP1D; } BPy_ContourUP1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../../stroke/AdvancedPredicates1D.h" #include "../../stroke/AdvancedPredicates1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -104,7 +100,3 @@ PyTypeObject DensityLowerThanUP1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryPredicate1D.h" #include "../BPy_UnaryPredicate1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject DensityLowerThanUP1D_Type; extern PyTypeObject DensityLowerThanUP1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_DensityLowerThanUP1D; } BPy_DensityLowerThanUP1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -101,7 +97,3 @@ PyTypeObject EqualToChainingTimeStampUP1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryPredicate1D.h" #include "../BPy_UnaryPredicate1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject EqualToChainingTimeStampUP1D_Type; extern PyTypeObject EqualToChainingTimeStampUP1D_Type;
@@ -28,7 +24,3 @@ typedef struct {
} BPy_EqualToChainingTimeStampUP1D; } BPy_EqualToChainingTimeStampUP1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -100,7 +96,3 @@ PyTypeObject EqualToTimeStampUP1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryPredicate1D.h" #include "../BPy_UnaryPredicate1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject EqualToTimeStampUP1D_Type; extern PyTypeObject EqualToTimeStampUP1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_EqualToTimeStampUP1D; } BPy_EqualToTimeStampUP1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#include "BPy_ExternalContourUP1D.h" #include "BPy_ExternalContourUP1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -92,7 +88,3 @@ PyTypeObject ExternalContourUP1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryPredicate1D.h" #include "../BPy_UnaryPredicate1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ExternalContourUP1D_Type; extern PyTypeObject ExternalContourUP1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_ExternalContourUP1D; } BPy_ExternalContourUP1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#include "BPy_FalseUP1D.h" #include "BPy_FalseUP1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -87,7 +83,3 @@ PyTypeObject FalseUP1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryPredicate1D.h" #include "../BPy_UnaryPredicate1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject FalseUP1D_Type; extern PyTypeObject FalseUP1D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_FalseUP1D; } BPy_FalseUP1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#include "BPy_QuantitativeInvisibilityUP1D.h" #include "BPy_QuantitativeInvisibilityUP1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -103,7 +99,3 @@ PyTypeObject QuantitativeInvisibilityUP1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryPredicate1D.h" #include "../BPy_UnaryPredicate1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject QuantitativeInvisibilityUP1D_Type; extern PyTypeObject QuantitativeInvisibilityUP1D_Type;
@@ -28,7 +24,3 @@ typedef struct {
} BPy_QuantitativeInvisibilityUP1D; } BPy_QuantitativeInvisibilityUP1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "BLI_sys_types.h" #include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -101,7 +97,3 @@ PyTypeObject ShapeUP1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryPredicate1D.h" #include "../BPy_UnaryPredicate1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject ShapeUP1D_Type; extern PyTypeObject ShapeUP1D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_ShapeUP1D; } BPy_ShapeUP1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#include "BPy_TrueUP1D.h" #include "BPy_TrueUP1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -87,7 +83,3 @@ PyTypeObject TrueUP1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryPredicate1D.h" #include "../BPy_UnaryPredicate1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject TrueUP1D_Type; extern PyTypeObject TrueUP1D_Type;
@@ -26,7 +22,3 @@ typedef struct {
} BPy_TrueUP1D; } BPy_TrueUP1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#include "BPy_WithinImageBoundaryUP1D.h" #include "BPy_WithinImageBoundaryUP1D.h"
#ifdef __cplusplus
extern "C" {
#endif
using namespace Freestyle; using namespace Freestyle;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
@@ -101,7 +97,3 @@ PyTypeObject WithinImageBoundaryUP1D_Type = {
}; };
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "../BPy_UnaryPredicate1D.h" #include "../BPy_UnaryPredicate1D.h"
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject WithinImageBoundaryUP1D_Type; extern PyTypeObject WithinImageBoundaryUP1D_Type;
@@ -27,7 +23,3 @@ typedef struct {
} BPy_WithinImageBoundaryUP1D; } BPy_WithinImageBoundaryUP1D;
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
struct Depsgraph; struct Depsgraph;
struct Object; struct Object;
struct Scene; struct Scene;
@@ -33,7 +29,3 @@ void BIK_clear_data(struct bPose *pose);
void BIK_clear_cache(struct bPose *pose); void BIK_clear_cache(struct bPose *pose);
void BIK_update_param(struct bPose *pose); void BIK_update_param(struct bPose *pose);
void BIK_test_constraint(struct Object *ob, struct bConstraint *cons); void BIK_test_constraint(struct Object *ob, struct bConstraint *cons);
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
struct Depsgraph; struct Depsgraph;
struct Object; struct Object;
struct Scene; struct Scene;
@@ -35,7 +31,3 @@ struct IKPlugin {
}; };
using IKPlugin = struct IKPlugin; using IKPlugin = struct IKPlugin;
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "ikplugin_api.h" #include "ikplugin_api.h"
#ifdef __cplusplus
extern "C" {
#endif
void iksolver_initialize_tree(struct Depsgraph *depsgraph, void iksolver_initialize_tree(struct Depsgraph *depsgraph,
struct Scene *scene, struct Scene *scene,
struct Object *ob, struct Object *ob,
@@ -25,7 +21,3 @@ void iksolver_execute_tree(struct Depsgraph *depsgraph,
float ctime); float ctime);
void iksolver_release_tree(struct Scene *scene, struct Object *ob, float ctime); void iksolver_release_tree(struct Scene *scene, struct Object *ob, float ctime);
void iksolver_clear_data(struct bPose *pose); void iksolver_clear_data(struct bPose *pose);
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "ikplugin_api.h" #include "ikplugin_api.h"
#ifdef __cplusplus
extern "C" {
#endif
void itasc_initialize_tree(struct Depsgraph *depsgraph, void itasc_initialize_tree(struct Depsgraph *depsgraph,
struct Scene *scene, struct Scene *scene,
struct Object *ob, struct Object *ob,
@@ -28,7 +24,3 @@ void itasc_clear_data(struct bPose *pose);
void itasc_clear_cache(struct bPose *pose); void itasc_clear_cache(struct bPose *pose);
void itasc_update_param(struct bPose *pose); void itasc_update_param(struct bPose *pose);
void itasc_test_constraint(struct Object *ob, struct bConstraint *cons); void itasc_test_constraint(struct Object *ob, struct bConstraint *cons);
#ifdef __cplusplus
}
#endif

View File

@@ -6,10 +6,6 @@
#include "BLI_utildefines.h" #include "BLI_utildefines.h"
#ifdef __cplusplus
extern "C" {
#endif
/** \file /** \file
* \ingroup imbuf * \ingroup imbuf
*/ */
@@ -56,7 +52,3 @@ enum IMB_Proxy_Size {
IMB_PROXY_MAX_SLOT = 4, IMB_PROXY_MAX_SLOT = 4,
}; };
ENUM_OPERATORS(IMB_Proxy_Size, IMB_PROXY_100); ENUM_OPERATORS(IMB_Proxy_Size, IMB_PROXY_100);
#ifdef __cplusplus
}
#endif

View File

@@ -13,10 +13,6 @@
#include "logImageCore.h" #include "logImageCore.h"
#ifdef __cplusplus
extern "C" {
#endif
#define CINEON_FILE_MAGIC 0x802A5FD7 #define CINEON_FILE_MAGIC 0x802A5FD7
#define CINEON_UNDEFINED_U8 0xFF #define CINEON_UNDEFINED_U8 0xFF
#define CINEON_UNDEFINED_U16 0xFFFF #define CINEON_UNDEFINED_U16 0xFFFF
@@ -116,7 +112,3 @@ void cineonSetVerbose(int);
LogImageFile *cineonOpen(const uchar *byteStuff, int fromMemory, size_t bufferSize); LogImageFile *cineonOpen(const uchar *byteStuff, int fromMemory, size_t bufferSize);
LogImageFile *cineonCreate( LogImageFile *cineonCreate(
const char *filepath, int width, int height, int bitsPerSample, const char *creator); const char *filepath, int width, int height, int bitsPerSample, const char *creator);
#ifdef __cplusplus
}
#endif

View File

@@ -14,10 +14,6 @@
#include "logImageCore.h" #include "logImageCore.h"
#ifdef __cplusplus
extern "C" {
#endif
#define DPX_FILE_MAGIC 0x53445058 #define DPX_FILE_MAGIC 0x53445058
#define DPX_UNDEFINED_U8 0xFF #define DPX_UNDEFINED_U8 0xFF
#define DPX_UNDEFINED_U16 0xFFFF #define DPX_UNDEFINED_U16 0xFFFF
@@ -144,7 +140,3 @@ LogImageFile *dpxCreate(const char *filepath,
int referenceBlack, int referenceBlack,
float gamma, float gamma,
const char *creator); const char *creator);
#ifdef __cplusplus
}
#endif

View File

@@ -26,10 +26,6 @@
# define PATHSEP_CHAR '/' # define PATHSEP_CHAR '/'
#endif #endif
#ifdef __cplusplus
extern "C" {
#endif
/* /*
* Image structure * Image structure
*/ */
@@ -270,7 +266,3 @@ BLI_INLINE unsigned int float_uint(float value, unsigned int max)
} }
return (unsigned int)(((float)max * value) + 0.5f); return (unsigned int)(((float)max * value) + 0.5f);
} }
#ifdef __cplusplus
}
#endif

View File

@@ -14,8 +14,6 @@
OIIO_NAMESPACE_USING OIIO_NAMESPACE_USING
extern "C" {
void OIIO_init() void OIIO_init()
{ {
/* Make OIIO thread pool follow Blender number of threads override. */ /* Make OIIO thread pool follow Blender number of threads override. */
@@ -32,5 +30,3 @@ int OIIO_getVersionHex()
{ {
return openimageio_version(); return openimageio_version();
} }
} /* extern "C" */

View File

@@ -8,21 +8,12 @@
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
/* /*
* Initialize OpenImageIO on startup. * Initialize OpenImageIO on startup.
*/ */
void OIIO_init(void); void OIIO_init();
/* /*
* Get OpenImageIO version. * Get OpenImageIO version.
*/ */
int OIIO_getVersionHex(void); int OIIO_getVersionHex();
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include <cstdio> #include <cstdio>
#ifdef __cplusplus
extern "C" {
#endif
void imb_initopenexr(void); void imb_initopenexr(void);
void imb_exitopenexr(void); void imb_exitopenexr(void);
@@ -33,7 +29,3 @@ struct ImBuf *imb_load_filepath_thumbnail_openexr(const char *filepath,
char colorspace[], char colorspace[],
size_t *r_width, size_t *r_width,
size_t *r_height); size_t *r_height);
#ifdef __cplusplus
}
#endif

View File

@@ -17,10 +17,6 @@
#include "DNA_layer_types.h" #include "DNA_layer_types.h"
#include "DNA_object_types.h" #include "DNA_object_types.h"
#ifdef __cplusplus
extern "C" {
#endif
static const BC_global_forward_axis BC_DEFAULT_FORWARD = BC_GLOBAL_FORWARD_Y; static const BC_global_forward_axis BC_DEFAULT_FORWARD = BC_GLOBAL_FORWARD_Y;
static const BC_global_up_axis BC_DEFAULT_UP = BC_GLOBAL_UP_Z; static const BC_global_up_axis BC_DEFAULT_UP = BC_GLOBAL_UP_Z;
@@ -43,9 +39,6 @@ int bc_is_marked(Object *ob);
void bc_remove_mark(Object *ob); void bc_remove_mark(Object *ob);
void bc_set_mark(Object *ob); void bc_set_mark(Object *ob);
#ifdef __cplusplus
}
class BlenderContext { class BlenderContext {
private: private:
bContext *context; bContext *context;
@@ -64,4 +57,3 @@ class BlenderContext {
ViewLayer *get_view_layer(); ViewLayer *get_view_layer();
Main *get_main(); Main *get_main();
}; };
#endif

View File

@@ -16,8 +16,6 @@
#include "BLI_linklist.h" #include "BLI_linklist.h"
extern "C" {
static void print_import_header(ImportSettings &import_settings) static void print_import_header(ImportSettings &import_settings)
{ {
fprintf(stderr, "+-- Collada Import parameters------\n"); fprintf(stderr, "+-- Collada Import parameters------\n");
@@ -95,6 +93,3 @@ int collada_export(bContext *C, ExportSettings *export_settings)
return (status) ? -1 : export_count; return (status) ? -1 : export_count;
} }
/* end extern C */
}

View File

@@ -15,10 +15,6 @@
#include "RNA_types.hh" #include "RNA_types.hh"
#ifdef __cplusplus
extern "C" {
#endif
struct bContext; struct bContext;
/* /*
@@ -27,7 +23,3 @@ struct bContext;
int collada_import(struct bContext *C, ImportSettings *import_settings); int collada_import(struct bContext *C, ImportSettings *import_settings);
int collada_export(struct bContext *C, ExportSettings *export_settings); int collada_export(struct bContext *C, ExportSettings *export_settings);
#ifdef __cplusplus
}
#endif

View File

@@ -18,10 +18,6 @@
#include <math.h> #include <math.h>
#include <string.h> #include <string.h>
#ifdef __cplusplus
extern "C" {
#endif
struct LineartBoundingArea; struct LineartBoundingArea;
struct LineartEdge; struct LineartEdge;
struct LineartData; struct LineartData;
@@ -242,7 +238,3 @@ void lineart_edge_cut(struct LineartData *ld,
void lineart_add_edge_to_array(struct LineartPendingEdges *pe, struct LineartEdge *e); void lineart_add_edge_to_array(struct LineartPendingEdges *pe, struct LineartEdge *e);
void lineart_finalize_object_edge_array_reserve(struct LineartPendingEdges *pe, int count); void lineart_finalize_object_edge_array_reserve(struct LineartPendingEdges *pe, int count);
void lineart_destroy_render_data_keep_init(struct LineartData *ld); void lineart_destroy_render_data_keep_init(struct LineartData *ld);
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "BKE_node.hh" #include "BKE_node.hh"
#ifdef __cplusplus
extern "C" {
#endif
extern struct blender::bke::bNodeTreeType *ntreeType_Shader; extern struct blender::bke::bNodeTreeType *ntreeType_Shader;
void register_node_type_sh_custom_group(blender::bke::bNodeType *ntype); void register_node_type_sh_custom_group(blender::bke::bNodeType *ntype);
@@ -35,7 +31,3 @@ struct bNode *ntreeShaderOutputNode(struct bNodeTree *ntree, int target);
* This one needs to work on a local tree. * This one needs to work on a local tree.
*/ */
void ntreeGPUMaterialNodes(struct bNodeTree *localtree, struct GPUMaterial *mat); void ntreeGPUMaterialNodes(struct bNodeTree *localtree, struct GPUMaterial *mat);
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "BKE_node.hh" #include "BKE_node.hh"
#ifdef __cplusplus
extern "C" {
#endif
extern struct blender::bke::bNodeTreeType *ntreeType_Texture; extern struct blender::bke::bNodeTreeType *ntreeType_Texture;
void ntreeTexCheckCyclics(struct bNodeTree *ntree); void ntreeTexCheckCyclics(struct bNodeTree *ntree);
@@ -31,7 +27,3 @@ int ntreeTexExecTree(struct bNodeTree *ntree,
int cfra, int cfra,
int preview, int preview,
struct MTex *mtex); struct MTex *mtex);
#ifdef __cplusplus
}
#endif

View File

@@ -8,9 +8,7 @@
#pragma once #pragma once
#ifdef __cplusplus #include <string>
extern "C" {
#endif
struct bNodeTree; struct bNodeTree;
@@ -30,10 +28,4 @@ int node_group_ui_class(const struct bNode *node);
*/ */
void ntree_update_reroute_nodes(struct bNodeTree *ntree); void ntree_update_reroute_nodes(struct bNodeTree *ntree);
#ifdef __cplusplus
}
# include <string>
std::string node_group_ui_description(const bNode &node); std::string node_group_ui_description(const bNode &node);
#endif

View File

@@ -14,10 +14,6 @@
# error "Python 3.11 or greater is required, you'll need to update your Python." # error "Python 3.11 or greater is required, you'll need to update your Python."
#endif #endif
#ifdef __cplusplus
extern "C" {
#endif
struct bContext; struct bContext;
struct ReportList; struct ReportList;
@@ -54,7 +50,3 @@ extern void bpy_context_set(struct bContext *C, PyGILState_STATE *gilstate);
* Context should be used but not now because it causes some bugs. * Context should be used but not now because it causes some bugs.
*/ */
extern void bpy_context_clear(struct bContext *C, const PyGILState_STATE *gilstate); extern void bpy_context_clear(struct bContext *C, const PyGILState_STATE *gilstate);
#ifdef __cplusplus
}
#endif

View File

@@ -17,10 +17,6 @@ struct ImBuf;
struct Mesh; struct Mesh;
struct Render; struct Render;
#ifdef __cplusplus
extern "C" {
#endif
struct BakeImage { struct BakeImage {
struct Image *image; struct Image *image;
int tile_number; int tile_number;
@@ -140,7 +136,3 @@ void RE_bake_normal_world_to_world(const BakePixel pixel_array[],
const eBakeNormalSwizzle normal_swizzle[3]); const eBakeNormalSwizzle normal_swizzle[3]);
void RE_bake_ibuf_clear(struct Image *image, bool is_tangent); void RE_bake_ibuf_clear(struct Image *image, bool is_tangent);
#ifdef __cplusplus
}
#endif

View File

@@ -36,10 +36,6 @@ struct ViewRender;
struct bNode; struct bNode;
struct bNodeTree; struct bNodeTree;
#ifdef __cplusplus
extern "C" {
#endif
/* External Engine */ /* External Engine */
/** #RenderEngineType.flag */ /** #RenderEngineType.flag */
@@ -297,7 +293,3 @@ void RE_engine_free_blender_memory(struct RenderEngine *engine);
void RE_engine_tile_highlight_set( void RE_engine_tile_highlight_set(
struct RenderEngine *engine, int x, int y, int width, int height, bool highlight); struct RenderEngine *engine, int x, int y, int width, int height, bool highlight);
void RE_engine_tile_highlight_clear_all(struct RenderEngine *engine); void RE_engine_tile_highlight_clear_all(struct RenderEngine *engine);
#ifdef __cplusplus
}
#endif

View File

@@ -15,10 +15,6 @@ struct DerivedMesh;
struct MultiresBakeRender; struct MultiresBakeRender;
struct Scene; struct Scene;
#ifdef __cplusplus
extern "C" {
#endif
struct MultiresBakeRender { struct MultiresBakeRender {
Scene *scene; Scene *scene;
DerivedMesh *lores_dm, *hires_dm; DerivedMesh *lores_dm, *hires_dm;
@@ -54,7 +50,3 @@ struct MultiresBakeRender {
}; };
void RE_multires_bake_images(struct MultiresBakeRender *bkr); void RE_multires_bake_images(struct MultiresBakeRender *bkr);
#ifdef __cplusplus
}
#endif

View File

@@ -26,10 +26,6 @@ struct Scene;
struct StampData; struct StampData;
struct ViewLayer; struct ViewLayer;
#ifdef __cplusplus
extern "C" {
#endif
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* this include is what is exposed of render to outside world */ /* this include is what is exposed of render to outside world */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
@@ -515,7 +511,3 @@ struct ImBuf *RE_RenderViewEnsureImBuf(const RenderResult *render_result, Render
/* Returns true if the pass is a color (as opposite of data) and needs to be color managed. */ /* Returns true if the pass is a color (as opposite of data) and needs to be color managed. */
bool RE_RenderPassIsColor(const RenderPass *render_pass); bool RE_RenderPassIsColor(const RenderPass *render_pass);
#ifdef __cplusplus
}
#endif

View File

@@ -17,10 +17,6 @@ struct ImagePool;
struct MTex; struct MTex;
struct Tex; struct Tex;
#ifdef __cplusplus
extern "C" {
#endif
/* `texture_procedural.cc` */ /* `texture_procedural.cc` */
/** /**
@@ -139,7 +135,3 @@ int multitex_nodes(struct Tex *tex,
short which_output, short which_output,
const struct MTex *mtex, const struct MTex *mtex,
struct ImagePool *pool); struct ImagePool *pool);
#ifdef __cplusplus
}
#endif

View File

@@ -7,10 +7,6 @@
* \ingroup bke * \ingroup bke
*/ */
#ifdef __cplusplus
extern "C" {
#endif
struct DerivedMesh; struct DerivedMesh;
struct ImBuf; struct ImBuf;
struct Mesh; struct Mesh;
@@ -33,7 +29,3 @@ void RE_generate_texturemargin_adjacentfaces(struct ImBuf *ibuf,
void RE_generate_texturemargin_adjacentfaces_dm( void RE_generate_texturemargin_adjacentfaces_dm(
struct ImBuf *ibuf, char *mask, int margin, struct DerivedMesh *dm, const float uv_offset[2]); struct ImBuf *ibuf, char *mask, int margin, struct DerivedMesh *dm, const float uv_offset[2]);
#ifdef __cplusplus
}
#endif

View File

@@ -26,10 +26,6 @@ struct RenderResult;
struct ReportList; struct ReportList;
struct rcti; struct rcti;
#ifdef __cplusplus
extern "C" {
#endif
/* New */ /* New */
/** /**
@@ -163,7 +159,3 @@ void render_result_free_gpu_texture_caches(struct RenderResult *rr);
} \ } \
} \ } \
((void)0) ((void)0)
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "BLI_math_color.h" /* IWYU pragma: keep. Used in macros. */ #include "BLI_math_color.h" /* IWYU pragma: keep. Used in macros. */
#ifdef __cplusplus
extern "C" {
#endif
#define BRICONT \ #define BRICONT \
texres->tin = (texres->tin - 0.5f) * tex->contrast + tex->bright - 0.5f; \ texres->tin = (texres->tin - 0.5f) * tex->contrast + tex->bright - 0.5f; \
if (!(tex->flag & TEX_NO_CLAMP)) { \ if (!(tex->flag & TEX_NO_CLAMP)) { \
@@ -94,7 +90,3 @@ void image_sample(struct Image *ima,
float dy, float dy,
float result[4], float result[4],
struct ImagePool *pool); struct ImagePool *pool);
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
/** Span fill in method, is also used to localize data for Z-buffering. */ /** Span fill in method, is also used to localize data for Z-buffering. */
struct ZSpan { struct ZSpan {
int rectx, recty; /* range for clipping */ int rectx, recty; /* range for clipping */
@@ -37,7 +33,3 @@ void zspan_scanconvert(struct ZSpan *zspan,
float *v2, float *v2,
float *v3, float *v3,
void (*func)(void *, int, int, float, float)); void (*func)(void *, int, int, float, float));
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "BKE_shader_fx.h" #include "BKE_shader_fx.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ****************** Type structures for all effects ****************** */ /* ****************** Type structures for all effects ****************** */
extern ShaderFxTypeInfo shaderfx_Type_None; extern ShaderFxTypeInfo shaderfx_Type_None;
@@ -30,7 +26,3 @@ extern ShaderFxTypeInfo shaderfx_Type_Wave;
/* FX_shaderfx_util.c */ /* FX_shaderfx_util.c */
void shaderfx_type_init(ShaderFxTypeInfo *types[]); void shaderfx_type_init(ShaderFxTypeInfo *types[]);
#ifdef __cplusplus
}
#endif

View File

@@ -10,10 +10,6 @@
#include "FX_shader_types.h" // IWYU pragma: export #include "FX_shader_types.h" // IWYU pragma: export
#ifdef __cplusplus
extern "C" {
#endif
struct PointerRNA; struct PointerRNA;
struct Panel; struct Panel;
struct ARegionType; struct ARegionType;
@@ -50,7 +46,3 @@ struct PanelType *shaderfx_subpanel_register(struct ARegionType *region_type,
PanelDrawFn draw_header, PanelDrawFn draw_header,
PanelDrawFn draw, PanelDrawFn draw,
struct PanelType *parent); struct PanelType *parent);
#ifdef __cplusplus
}
#endif

View File

@@ -8,10 +8,6 @@
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
struct ClothModifierData; struct ClothModifierData;
struct Depsgraph; struct Depsgraph;
struct Implicit_Data; struct Implicit_Data;
@@ -40,7 +36,3 @@ int SIM_cloth_solve(struct Depsgraph *depsgraph,
struct ListBase *effectors); struct ListBase *effectors);
void SIM_cloth_solver_set_positions(struct ClothModifierData *clmd); void SIM_cloth_solver_set_positions(struct ClothModifierData *clmd);
void SIM_cloth_solver_set_volume(struct ClothModifierData *clmd); void SIM_cloth_solver_set_volume(struct ClothModifierData *clmd);
#ifdef __cplusplus
}
#endif

View File

@@ -12,10 +12,6 @@
#include <cstdio> #include <cstdio>
#ifdef __cplusplus
extern "C" {
#endif
// #define IMPLICIT_SOLVER_EIGEN // #define IMPLICIT_SOLVER_EIGEN
#define IMPLICIT_SOLVER_BLENDER #define IMPLICIT_SOLVER_BLENDER
@@ -277,7 +273,3 @@ void SIM_hair_volume_vertex_grid_forces(struct HairGrid *grid,
float f[3], float f[3],
float dfdx[3][3], float dfdx[3][3],
float dfdv[3][3]); float dfdv[3][3]);
#ifdef __cplusplus
}
#endif