Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_lattice.h
| Show First 20 Lines • Show All 41 Lines • ▼ Show 20 Lines | |||||
| struct Scene; | struct Scene; | ||||
| struct DerivedMesh; | struct DerivedMesh; | ||||
| struct BPoint; | struct BPoint; | ||||
| struct MDeformVert; | struct MDeformVert; | ||||
| void BKE_lattice_resize(struct Lattice *lt, int u, int v, int w, struct Object *ltOb); | void BKE_lattice_resize(struct Lattice *lt, int u, int v, int w, struct Object *ltOb); | ||||
| void BKE_lattice_init(struct Lattice *lt); | void BKE_lattice_init(struct Lattice *lt); | ||||
| struct Lattice *BKE_lattice_add(struct Main *bmain, const char *name); | struct Lattice *BKE_lattice_add(struct Main *bmain, const char *name); | ||||
| void BKE_lattice_copy_data(struct Main *bmain, struct Lattice *lt_dst, const struct Lattice *lt_src, const int flag); | |||||
| struct Lattice *BKE_lattice_copy(struct Main *bmain, const struct Lattice *lt); | struct Lattice *BKE_lattice_copy(struct Main *bmain, const struct Lattice *lt); | ||||
| void BKE_lattice_free(struct Lattice *lt); | void BKE_lattice_free(struct Lattice *lt); | ||||
| void BKE_lattice_make_local(struct Main *bmain, struct Lattice *lt, const bool lib_local); | void BKE_lattice_make_local(struct Main *bmain, struct Lattice *lt, const bool lib_local); | ||||
| void calc_lat_fudu(int flag, int res, float *r_fu, float *r_du); | void calc_lat_fudu(int flag, int res, float *r_fu, float *r_du); | ||||
| struct LatticeDeformData; | struct LatticeDeformData; | ||||
| struct LatticeDeformData *init_latt_deform(struct Object *oblatt, struct Object *ob) ATTR_WARN_UNUSED_RESULT; | struct LatticeDeformData *init_latt_deform(struct Object *oblatt, struct Object *ob) ATTR_WARN_UNUSED_RESULT; | ||||
| void calc_latt_deform(struct LatticeDeformData *lattice_deform_data, float co[3], float weight); | void calc_latt_deform(struct LatticeDeformData *lattice_deform_data, float co[3], float weight); | ||||
| ▲ Show 20 Lines • Show All 49 Lines • Show Last 20 Lines | |||||