Blender V2.61 - r43446
|
00001 /* 00002 * ***** BEGIN GPL LICENSE BLOCK ***** 00003 * 00004 * This program is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU General Public License 00006 * as published by the Free Software Foundation; either version 2 00007 * of the License, or (at your option) any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this program; if not, write to the Free Software Foundation, 00016 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00017 * 00018 * The Original Code is Copyright (C) 2007 by Janne Karhu. 00019 * All rights reserved. 00020 * 00021 * The Original Code is: all of this file. 00022 * 00023 * Contributor(s): none yet. 00024 * 00025 * ***** END GPL LICENSE BLOCK ***** 00026 */ 00027 00033 #ifndef ED_PHYSICS_INTERN_H 00034 #define ED_PHYSICS_INTERN_H 00035 00036 struct wmOperatorType; 00037 00038 /* particle_edit.c */ 00039 void PARTICLE_OT_select_all(struct wmOperatorType *ot); 00040 void PARTICLE_OT_select_roots(struct wmOperatorType *ot); 00041 void PARTICLE_OT_select_tips(struct wmOperatorType *ot); 00042 void PARTICLE_OT_select_linked(struct wmOperatorType *ot); 00043 void PARTICLE_OT_select_less(struct wmOperatorType *ot); 00044 void PARTICLE_OT_select_more(struct wmOperatorType *ot); 00045 00046 void PARTICLE_OT_hide(struct wmOperatorType *ot); 00047 void PARTICLE_OT_reveal(struct wmOperatorType *ot); 00048 00049 void PARTICLE_OT_rekey(struct wmOperatorType *ot); 00050 void PARTICLE_OT_subdivide(struct wmOperatorType *ot); 00051 void PARTICLE_OT_remove_doubles(struct wmOperatorType *ot); 00052 void PARTICLE_OT_weight_set(struct wmOperatorType *ot); 00053 void PARTICLE_OT_delete(struct wmOperatorType *ot); 00054 void PARTICLE_OT_mirror(struct wmOperatorType *ot); 00055 00056 void PARTICLE_OT_brush_edit(struct wmOperatorType *ot); 00057 00058 void PARTICLE_OT_particle_edit_toggle(struct wmOperatorType *ot); 00059 void PARTICLE_OT_edited_clear(struct wmOperatorType *ot); 00060 00061 /* particle_object.c */ 00062 void OBJECT_OT_particle_system_add(struct wmOperatorType *ot); 00063 void OBJECT_OT_particle_system_remove(struct wmOperatorType *ot); 00064 00065 void PARTICLE_OT_new(struct wmOperatorType *ot); 00066 void PARTICLE_OT_new_target(struct wmOperatorType *ot); 00067 void PARTICLE_OT_target_remove(struct wmOperatorType *ot); 00068 void PARTICLE_OT_target_move_up(struct wmOperatorType *ot); 00069 void PARTICLE_OT_target_move_down(struct wmOperatorType *ot); 00070 void PARTICLE_OT_connect_hair(struct wmOperatorType *ot); 00071 void PARTICLE_OT_disconnect_hair(struct wmOperatorType *ot); 00072 00073 void PARTICLE_OT_dupliob_copy(struct wmOperatorType *ot); 00074 void PARTICLE_OT_dupliob_remove(struct wmOperatorType *ot); 00075 void PARTICLE_OT_dupliob_move_up(struct wmOperatorType *ot); 00076 void PARTICLE_OT_dupliob_move_down(struct wmOperatorType *ot); 00077 00078 /* particle_boids.c */ 00079 void BOID_OT_rule_add(struct wmOperatorType *ot); 00080 void BOID_OT_rule_del(struct wmOperatorType *ot); 00081 void BOID_OT_rule_move_up(struct wmOperatorType *ot); 00082 void BOID_OT_rule_move_down(struct wmOperatorType *ot); 00083 00084 void BOID_OT_state_add(struct wmOperatorType *ot); 00085 void BOID_OT_state_del(struct wmOperatorType *ot); 00086 void BOID_OT_state_move_up(struct wmOperatorType *ot); 00087 void BOID_OT_state_move_down(struct wmOperatorType *ot); 00088 00089 /* physics_fluid.c */ 00090 void FLUID_OT_bake(struct wmOperatorType *ot); 00091 00092 /* dynamicpaint.c */ 00093 void DPAINT_OT_bake(struct wmOperatorType *ot); 00094 void DPAINT_OT_surface_slot_add(struct wmOperatorType *ot); 00095 void DPAINT_OT_surface_slot_remove(struct wmOperatorType *ot); 00096 void DPAINT_OT_type_toggle(struct wmOperatorType *ot); 00097 void DPAINT_OT_output_toggle(struct wmOperatorType *ot); 00098 00099 /* physics_pointcache.c */ 00100 void PTCACHE_OT_bake_all(struct wmOperatorType *ot); 00101 void PTCACHE_OT_free_bake_all(struct wmOperatorType *ot); 00102 void PTCACHE_OT_bake(struct wmOperatorType *ot); 00103 void PTCACHE_OT_free_bake(struct wmOperatorType *ot); 00104 void PTCACHE_OT_bake_from_cache(struct wmOperatorType *ot); 00105 void PTCACHE_OT_add(struct wmOperatorType *ot); 00106 void PTCACHE_OT_remove(struct wmOperatorType *ot); 00107 00108 #endif /* ED_PHYSICS_INTERN_H */ 00109