Home
last modified time | relevance | path

Searched refs:vecw (Results 1 – 10 of 10) sorted by relevance

/dports/math/py-matplotlib/matplotlib-3.4.3/lib/mpl_toolkits/mplot3d/
H A Dproj3d.py106 vecw = np.dot(M, vec)
107 w = vecw[3]
109 txs, tys, tzs = vecw[0]/w, vecw[1]/w, vecw[2]/w
114 vecw = np.dot(M, vec)
115 w = vecw[3]
117 txs, tys, tzs = vecw[0] / w, vecw[1] / w, vecw[2] / w
118 tis = (0 <= vecw[0]) & (vecw[0] <= 1) & (0 <= vecw[1]) & (vecw[1] <= 1)
120 tis = vecw[1] < 1
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/mpl_toolkits/mplot3d/
H A Dproj3d.py138 vecw = np.dot(M, vec)
139 w = vecw[3]
141 txs, tys, tzs = vecw[0]/w, vecw[1]/w, vecw[2]/w
145 vecw = np.dot(M, vec)
146 w = vecw[3]
148 txs, tys, tzs = vecw[0] / w, vecw[1] / w, vecw[2] / w
149 tis = (0 <= vecw[0]) & (vecw[0] <= 1) & (0 <= vecw[1]) & (vecw[1] <= 1)
151 tis = vecw[1] < 1
/dports/cad/gplcver/gplcver-2.12a.src/src/
H A Dcvmacros.h208 #define get_packintowrd_(nva, inum, vecw) \ argument
209 (((vecw) <= 4) ? ((word32) (nva).bp[(inum)]) \
210 : (((vecw) > 8) ? (nva).wp[(inum)] : (word32) (nva).hwp[(inum)]))
212 #define st_packintowrd_(nva, ind, uwrd, vecw) \ argument
213 (((vecw) <= 4) ? ((nva).bp[(ind)] = (byte) (uwrd)) \
214 : (((vecw) > 8) ? ((nva).wp[(ind)] = (uwrd)) : ((nva).hwp[(ind)] = (hword) (uwrd))))
H A Dv_prp2.c2346 int32 vecw, word32 maska, word32 maskb) in __init_vec_var() argument
2354 if (vecw <= WBITS) in __init_vec_var()
2356 maska &= __masktab[vecw]; in __init_vec_var()
2357 maskb &= __masktab[vecw]; in __init_vec_var()
2362 ubits = ubits_(vecw); in __init_vec_var()
/dports/math/cgal/CGAL-5.3/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/
H A DFastEnvelope_filter.h131 Vector3 vecw(pw.x(), pw.y(), pw.z()); in operator()
133 std::array<Vector3, 3> triangle = { vecp, vecv, vecw}; in operator()
139 vecv = vecw; in operator()
/dports/devel/hs-hlint/hlint-3.3.4/_cabal_deps/ghc-lib-parser-9.0.1.20210324/compiler/GHC/Cmm/
H A DType.hs270 vec l (CmmType cat w) = CmmType (VecCat l cat) vecw
272 vecw :: Width
273 vecw = widthFromBytes (l*widthInBytes w) function
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/ghc-lib-parser-8.10.7.20210828/compiler/cmm/
H A DCmmType.hs279 vec l (CmmType cat w) = CmmType (VecCat l cat) vecw
281 vecw :: Width
282 vecw = widthFromBytes (l*widthInBytes w) function
/dports/devel/hs-ormolu/ormolu-0.4.0.0/_cabal_deps/ghc-lib-parser-9.2.1.20211101/compiler/GHC/Cmm/
H A DType.hs271 vec l (CmmType cat w) = CmmType (VecCat l cat) vecw
273 vecw :: Width
274 vecw = widthFromBytes (l*widthInBytes w) function
/dports/lang/ghc/ghc-8.10.7/compiler/cmm/
H A DCmmType.hs279 vec l (CmmType cat w) = CmmType (VecCat l cat) vecw
281 vecw :: Width
282 vecw = widthFromBytes (l*widthInBytes w) function
/dports/graphics/blender/blender-2.91.0/source/blender/simulation/intern/
H A Dhair_volume.cpp358 BLI_INLINE void grid_to_world(HairGrid *grid, float vecw[3], const float vec[3]) in grid_to_world()
360 copy_v3_v3(vecw, vec); in grid_to_world()
361 mul_v3_fl(vecw, grid->cellsize); in grid_to_world()
362 add_v3_v3(vecw, grid->gmin); in grid_to_world()