Home
last modified time | relevance | path

Searched refs:face_data (Results 1 – 25 of 109) sorted by relevance

12345

/dports/graphics/blender/blender-2.91.0/release/scripts/addons/io_mesh_uv_layout/
H A Dexport_uv_eps.py24 def export(filepath, face_data, colors, width, height, opacity): argument
26 for text in get_file_parts(face_data, colors, width, height, opacity):
29 def get_file_parts(face_data, colors, width, height, opacity): argument
34 yield from draw_colored_polygons(face_data, name_by_color, width, height)
35 yield from draw_lines(face_data, width, height)
69 def draw_colored_polygons(face_data, name_by_color, width, height): argument
70 for uvs, color in face_data:
75 def draw_lines(face_data, width, height): argument
76 for uvs, _ in face_data:
H A Dexport_uv_png.py28 def export(filepath, face_data, colors, width, height, opacity): argument
35 draw_image(face_data, opacity)
43 def draw_image(face_data, opacity): argument
53 draw_background_colors(face_data, opacity)
54 draw_lines(face_data)
68 def draw_background_colors(face_data, opacity): argument
69 coords = [uv for uvs, _ in face_data for uv in uvs]
70 colors = [(*color, opacity) for uvs, color in face_data for _ in range(len(uvs))]
74 for uvs, _ in face_data:
89 def draw_lines(face_data): argument
[all …]
H A Dexport_uv_svg.py25 def export(filepath, face_data, colors, width, height, opacity): argument
27 for text in get_file_parts(face_data, colors, width, height, opacity):
30 def get_file_parts(face_data, colors, width, height, opacity): argument
32 yield from draw_polygons(face_data, width, height, opacity)
44 def draw_polygons(face_data, width, height, opacity): argument
45 for uvs, color in face_data:
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/geometry/include/pcl/geometry/
H A Dtriangle_mesh.h138 const FaceData& face_data = FaceData(),
166 const FaceData& face_data = FaceData(),
177 face_data,
204 const FaceData& face_data = FaceData(),
228 idx_face_0 = this->addFace(idx_v_1, idx_v_2, idx_v_3, face_data);
229 idx_face_1 = this->addFace(idx_v_0, idx_v_1, idx_v_3, face_data);
264 face_data,
275 face_data,
290 const FaceData& face_data, in addFaceImpl() argument
311 const FaceData& face_data, in connectTrianglePair() argument
[all …]
H A Dpolygon_mesh.h138 const FaceData& face_data = FaceData(),
146 return (this->addFaceImplBase(add_triangle_, face_data, edge_data, half_edge_data));
168 const FaceData& face_data = FaceData(),
177 return (this->addFaceImplBase(add_quad_, face_data, edge_data, half_edge_data));
188 const FaceData& face_data, in addFaceImpl() argument
192 return (this->addFaceImplBase(vertices, face_data, edge_data, half_edge_data)); in addFaceImpl()
H A Dquad_mesh.h135 const FaceData& face_data = FaceData(),
144 return (this->addFaceImplBase(add_quad_, face_data, edge_data, half_edge_data));
155 const FaceData& face_data, in addFaceImpl() argument
160 return (this->addFaceImplBase(vertices, face_data, edge_data, half_edge_data)); in addFaceImpl()
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/examples/step-14/
H A Dstep-14.cc1777 FaceData(const FaceData &face_data);
1794 FaceData face_data; member
1926 , dual_weights(face_data.dual_weights) in FaceData()
1927 , cell_grads(face_data.cell_grads) in FaceData()
1953 , face_data(scratch_data.face_data) in WeightedResidualScratchData()
2425 face_data.jump_residual[p] = in integrate_over_regular_face()
2426 ((face_data.cell_grads[p] - face_data.neighbor_grads[p]) * in integrate_over_regular_face()
2438 (face_data.jump_residual[p] * face_data.dual_weights[p] * in integrate_over_regular_face()
2528 face_data.jump_residual[p] = in integrate_over_irregular_face()
2529 ((face_data.neighbor_grads[p] - face_data.cell_grads[p]) * in integrate_over_irregular_face()
[all …]
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/include/deal.II/matrix_free/
H A Dmapping_info.templates.h243 face_data.clear(); in clear()
317 face_data.resize(quad.size()); in initialize()
386 for (auto &data : face_data) in update_mapping()
1728 face_data.resize(n_q_points); in initialize_face_range()
2008 face_data.jac_size; in initialize_face_range()
2021 face_data.JxW_values[q]); in initialize_face_range()
2335 face_data.size()), in initialize_faces()
2428 face_data[my_q]); in initialize_faces()
2465 face_data[my_q].JxW_values[i] = face_data[0].JxW_values[i]; in initialize_faces()
2486 face_data[my_q]); in initialize_faces()
[all …]
/dports/devel/libsavitar/libSavitar-96eba0e/src/
H A DMeshData.cpp130 bytearray face_data; in getFacesAsBytes() local
137face_data.insert(face_data.end(), reinterpret_cast<const uint8_t*>(&v1), reinterpret_cast<const ui… in getFacesAsBytes()
138face_data.insert(face_data.end(), reinterpret_cast<const uint8_t*>(&v2), reinterpret_cast<const ui… in getFacesAsBytes()
139face_data.insert(face_data.end(), reinterpret_cast<const uint8_t*>(&v3), reinterpret_cast<const ui… in getFacesAsBytes()
141 return face_data; in getFacesAsBytes()
/dports/devel/py-trimesh/trimesh-3.5.25/trimesh/exchange/
H A Dply.py330 face_data = elements['face']['data']
333 face_data = None
341 if util.is_shape(face_data, (-1, (3, 4))):
342 faces = face_data
343 elif isinstance(face_data, dict):
346 if i in face_data:
347 faces = face_data[i]
350 if 'texcoord' in face_data:
351 texcoord = face_data['texcoord']
353 elif isinstance(face_data, np.ndarray):
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/mesh_inset/
H A Dmodel.py65 m.face_data.extend([pa.data] * len(qpa))
70 m.face_data.append(pa.data)
104 mdl.face_data.extend([pa.data] * len(qpa))
144 mdl.face_data.append(data)
194 m.face_data.extend([pa.data] * len(qpa))
197 m.face_data.append(pa.data)
199 _AddTransformedPolysToModel(mdl, m.faces, m.points, m.face_data,
235 mdl.face_data.append(data)
269 pas = RegionToPolyAreas(mdl.faces, mdl.points, mdl.face_data)
273 mdl.face_data[f]))
[all …]
/dports/graphics/ipe/ipe-7.2.23/src/ipecairo/
H A Dipefonts.cpp171 static void face_data_destroy(FaceData *face_data) in face_data_destroy() argument
174 FT_Done_Face(face_data->iFace); // discard Freetype face in face_data_destroy()
175 delete face_data; // discard memory buffer in face_data_destroy()
257 FaceData *face_data = new FaceData; in Face() local
258 face_data->iData = data; in Face()
259 face_data->iFace = iFace; in Face()
265 cairo_font_face_set_user_data(iCairoFont, &datakey, face_data, in Face()
271 delete face_data; in Face()
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/magic_uv/op/
H A Dtransfer_uv.py259 for face_data in all_sorted_faces.values():
260 edges = face_data[1]
261 uv_loops = face_data[2]
301 for j, face_data in enumerate(all_sorted_faces.values()):
305 if len(copied_data[0]) != len(face_data[2]):
313 for k, (edge, uvloop) in enumerate(zip(face_data[1],
314 face_data[2])):
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/harfbuzz/src/
H A Dhb-graphite2.cc60 hb_graphite2_shaper_face_data_t *face_data = (hb_graphite2_shaper_face_data_t *) data; in hb_graphite2_get_table() local
61 hb_graphite2_tablelist_t *tlist = face_data->tlist; in hb_graphite2_get_table()
73 blob = face_data->face->reference_table (tag); in hb_graphite2_get_table()
85 p->next = face_data->tlist; in hb_graphite2_get_table()
86 face_data->tlist = p; in hb_graphite2_get_table()
167 hb_graphite2_shaper_face_data_t *face_data = HB_SHAPER_DATA_GET (face); in _hb_graphite2_shaper_font_data_create() local
169 …return gr_make_font_with_advance_fn (font->x_scale, font, &hb_graphite2_get_advance, face_data->gr… in _hb_graphite2_shaper_font_data_create()
/dports/devel/stb/stb-f54acd4/
H A Dstb_voxel_render.h2044 stbvox_mesh_face face_data = { 0 }; in stbvox_compute_mesh_face_value() local
2054 face_data.face_info = (normal<<2); in stbvox_compute_mesh_face_value()
2055 return face_data; in stbvox_compute_mesh_face_value()
2068 face_data.tex1 = bt; in stbvox_compute_mesh_face_value()
2078 face_data.color = mcol; in stbvox_compute_mesh_face_value()
2082 face_data.color = mcol; in stbvox_compute_mesh_face_value()
2099 face_data.tex1 = rep1; in stbvox_compute_mesh_face_value()
2104 face_data.tex2 = rep2; in stbvox_compute_mesh_face_value()
2109 face_data.color = rep3; in stbvox_compute_mesh_face_value()
2118 face_data.tex2 = mm->input.tex2_for_tex1[face_data.tex1]; in stbvox_compute_mesh_face_value()
[all …]
/dports/net-im/uTox/uTox/third-party/stb/
H A Dstb_voxel_render.h2040 stbvox_mesh_face face_data = { 0 }; in stbvox_compute_mesh_face_value() local
2050 face_data.face_info = (normal<<2); in stbvox_compute_mesh_face_value()
2051 return face_data; in stbvox_compute_mesh_face_value()
2064 face_data.tex1 = bt; in stbvox_compute_mesh_face_value()
2074 face_data.color = mcol; in stbvox_compute_mesh_face_value()
2078 face_data.color = mcol; in stbvox_compute_mesh_face_value()
2095 face_data.tex1 = rep1; in stbvox_compute_mesh_face_value()
2100 face_data.tex2 = rep2; in stbvox_compute_mesh_face_value()
2105 face_data.color = rep3; in stbvox_compute_mesh_face_value()
2114 face_data.tex2 = mm->input.tex2_for_tex1[face_data.tex1]; in stbvox_compute_mesh_face_value()
[all …]
/dports/cad/cura-engine/CuraEngine-fadb5d6b/include/stb/
H A Dstb_voxel_render.h2043 stbvox_mesh_face face_data = { 0 }; in stbvox_compute_mesh_face_value() local
2053 face_data.face_info = (normal<<2); in stbvox_compute_mesh_face_value()
2054 return face_data; in stbvox_compute_mesh_face_value()
2067 face_data.tex1 = bt; in stbvox_compute_mesh_face_value()
2077 face_data.color = mcol; in stbvox_compute_mesh_face_value()
2081 face_data.color = mcol; in stbvox_compute_mesh_face_value()
2098 face_data.tex1 = rep1; in stbvox_compute_mesh_face_value()
2103 face_data.tex2 = rep2; in stbvox_compute_mesh_face_value()
2108 face_data.color = rep3; in stbvox_compute_mesh_face_value()
2117 face_data.tex2 = mm->input.tex2_for_tex1[face_data.tex1]; in stbvox_compute_mesh_face_value()
[all …]
/dports/security/ridl/ridl-11b3240/stb/
H A Dstb_voxel_render.h2043 stbvox_mesh_face face_data = { 0 }; in stbvox_compute_mesh_face_value() local
2053 face_data.face_info = (normal<<2); in stbvox_compute_mesh_face_value()
2054 return face_data; in stbvox_compute_mesh_face_value()
2067 face_data.tex1 = bt; in stbvox_compute_mesh_face_value()
2077 face_data.color = mcol; in stbvox_compute_mesh_face_value()
2081 face_data.color = mcol; in stbvox_compute_mesh_face_value()
2098 face_data.tex1 = rep1; in stbvox_compute_mesh_face_value()
2103 face_data.tex2 = rep2; in stbvox_compute_mesh_face_value()
2108 face_data.color = rep3; in stbvox_compute_mesh_face_value()
2117 face_data.tex2 = mm->input.tex2_for_tex1[face_data.tex1]; in stbvox_compute_mesh_face_value()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/gfx/harfbuzz/src/
H A Dhb-graphite2.cc76 hb_graphite2_face_data_t *face_data = (hb_graphite2_face_data_t *) data; in hb_graphite2_get_table() local
77 hb_graphite2_tablelist_t *tlist = face_data->tlist; in hb_graphite2_get_table()
89 blob = face_data->face->reference_table (tag); in hb_graphite2_get_table()
100 hb_graphite2_tablelist_t *tlist = face_data->tlist; in hb_graphite2_get_table()
103 if (unlikely (!face_data->tlist.cmpexch (tlist, p))) in hb_graphite2_get_table()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/harfbuzz-ng/src/src/
H A Dhb-graphite2.cc72 hb_graphite2_face_data_t *face_data = (hb_graphite2_face_data_t *) data; in hb_graphite2_get_table() local
73 hb_graphite2_tablelist_t *tlist = face_data->tlist; in hb_graphite2_get_table()
85 blob = face_data->face->reference_table (tag); in hb_graphite2_get_table()
96 hb_graphite2_tablelist_t *tlist = face_data->tlist; in hb_graphite2_get_table()
99 if (unlikely (!face_data->tlist.cmpexch (tlist, p))) in hb_graphite2_get_table()
/dports/www/firefox/firefox-99.0/gfx/harfbuzz/src/
H A Dhb-graphite2.cc76 hb_graphite2_face_data_t *face_data = (hb_graphite2_face_data_t *) data; in hb_graphite2_get_table() local
77 hb_graphite2_tablelist_t *tlist = face_data->tlist; in hb_graphite2_get_table()
89 blob = face_data->face->reference_table (tag); in hb_graphite2_get_table()
100 hb_graphite2_tablelist_t *tlist = face_data->tlist; in hb_graphite2_get_table()
103 if (unlikely (!face_data->tlist.cmpexch (tlist, p))) in hb_graphite2_get_table()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/harfbuzz/src/
H A Dhb-graphite2.cc76 hb_graphite2_face_data_t *face_data = (hb_graphite2_face_data_t *) data; in hb_graphite2_get_table() local
77 hb_graphite2_tablelist_t *tlist = face_data->tlist; in hb_graphite2_get_table()
89 blob = face_data->face->reference_table (tag); in hb_graphite2_get_table()
100 hb_graphite2_tablelist_t *tlist = face_data->tlist; in hb_graphite2_get_table()
103 if (unlikely (!face_data->tlist.cmpexch (tlist, p))) in hb_graphite2_get_table()
/dports/print/harfbuzz-hb-view/harfbuzz-3.4.0/src/
H A Dhb-graphite2.cc76 hb_graphite2_face_data_t *face_data = (hb_graphite2_face_data_t *) data; in hb_graphite2_get_table() local
77 hb_graphite2_tablelist_t *tlist = face_data->tlist; in hb_graphite2_get_table()
89 blob = face_data->face->reference_table (tag); in hb_graphite2_get_table()
100 hb_graphite2_tablelist_t *tlist = face_data->tlist; in hb_graphite2_get_table()
103 if (unlikely (!face_data->tlist.cmpexch (tlist, p))) in hb_graphite2_get_table()
/dports/print/harfbuzz/harfbuzz-3.4.0/src/
H A Dhb-graphite2.cc76 hb_graphite2_face_data_t *face_data = (hb_graphite2_face_data_t *) data; in hb_graphite2_get_table() local
77 hb_graphite2_tablelist_t *tlist = face_data->tlist; in hb_graphite2_get_table()
89 blob = face_data->face->reference_table (tag); in hb_graphite2_get_table()
100 hb_graphite2_tablelist_t *tlist = face_data->tlist; in hb_graphite2_get_table()
103 if (unlikely (!face_data->tlist.cmpexch (tlist, p))) in hb_graphite2_get_table()
/dports/print/harfbuzz-icu/harfbuzz-3.4.0/src/
H A Dhb-graphite2.cc76 hb_graphite2_face_data_t *face_data = (hb_graphite2_face_data_t *) data; in hb_graphite2_get_table() local
77 hb_graphite2_tablelist_t *tlist = face_data->tlist; in hb_graphite2_get_table()
89 blob = face_data->face->reference_table (tag); in hb_graphite2_get_table()
100 hb_graphite2_tablelist_t *tlist = face_data->tlist; in hb_graphite2_get_table()
103 if (unlikely (!face_data->tlist.cmpexch (tlist, p))) in hb_graphite2_get_table()

12345