Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 | 1x 4x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 3x 1x 1x 1x 1x 1x 1x 1x 1x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 4x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 1x 1x 3x 3x 3x 3x 3x 3x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 1x 1x 1x 1x 1x 24x 24x 72x 24x 24x 1x 1x 3x 3x 1x 1x 1x 1x 24x 24x 72x 24x 24x 24x 24x 2x 2x 2x 1x 4x 4x 4x 4x 4x 4x 4x 1x | import macro from 'vtk.js/Sources/macros'; import vtkDataArray from 'vtk.js/Sources/Common/Core/DataArray'; import * as vtkMath from 'vtk.js/Sources/Common/Core/Math'; import vtkPolyData from 'vtk.js/Sources/Common/DataModel/PolyData'; const { vtkErrorMacro } = macro; // ---------------------------------------------------------------------------- // vtkTextureMapToPlane methods // ---------------------------------------------------------------------------- function vtkTextureMapToPlane(publicAPI, model) { // Set our className model.classHierarchy.push('vtkTextureMapToPlane'); function computeNormal(output) { const VTK_TOLERANCE = 0.001; // First thing to do is to get an initial normal and point to define // the plane. Then, use this information to construct better // matrices. If problem occurs, then the point and plane becomes the // fallback value const nbPoints = output.getPoints().getNumberOfPoints(); let dir = 0; let m = [0, 0, 0, 0, 0, 0, 0, 0, 0]; const x = [0, 0, 0]; const v = [0, 0, 0]; // Get minimum width of bounding box. const bounds = output.getBounds(); const minBounds = [bounds[0], bounds[2], bounds[4]]; const maxBounds = [bounds[1], bounds[3], bounds[5]]; const length = Math.sqrt( vtkMath.distance2BetweenPoints(minBounds, maxBounds) ); let w = length; let i = 0; for (; i < 3; i++) { model.normal[i] = 0.0; if (bounds[2 * i + 1] - bounds[2 * i] < w) { dir = i; w = bounds[2 * i + 1] - bounds[2 * i]; } } // If the bounds is perpendicular to one of the axes, then can // quickly compute normal. // model.normal[dir] = 1.0; Iif (w <= length * VTK_TOLERANCE) { return; } // Need to compute least squares approximation. Depending on major // normal direction (dir), construct matrices appropriately. // // Compute 3x3 least squares matrix v[0] = 0.0; v[1] = 0.0; v[2] = 0.0; for (let ptId = 0; ptId < nbPoints; ptId++) { output.getPoints().getPoint(ptId, x); v[0] += x[0] * x[2]; v[1] += x[1] * x[2]; v[2] += x[2]; m[0] += x[0] * x[0]; m[1] += x[0] * x[1]; m[2] += x[0]; m[3] += x[0] * x[1]; m[4] += x[1] * x[1]; m[5] += x[1]; m[6] += x[0]; m[7] += x[1]; } m[8] = nbPoints; // Solve linear system using Kramers rule const c1 = [m[0], m[1], m[2]]; const c2 = [m[3], m[4], m[5]]; const c3 = [m[6], m[7], m[8]]; const det = vtkMath.determinant3x3(m); Iif (det <= VTK_TOLERANCE) { return; } m = vtkMath.rowsToMat3(v, c2, c3, []); model.normal[0] = vtkMath.determinant3x3(m) / det; m = vtkMath.rowsToMat3(c1, v, c3, []); model.normal[1] = vtkMath.determinant3x3(m) / det; // because of the formulation model.normal[2] = -1.0; } publicAPI.requestData = (inData, outData) => { Iif (model.deleted) { return; } const input = inData[0]; const nbPoints = input.getPoints().getNumberOfPoints(); Iif (nbPoints < 3 && model.automaticPlaneGeneration) { vtkErrorMacro("Can't generate texture coordinates without points"); return; } const output = vtkPolyData.newInstance(); output .getPoints() .setData(new Float32Array(input.getPoints().getData()), 3); output.getPolys().setData(new Uint32Array(input.getPolys().getData())); const tcoordsData = []; let minProj = 0; let i = 0; let j = 0; let proj = 0; const axis = [0, 0, 0]; let dir = 0; const tAxis = [0, 0, 0]; const sAxis = [0, 0, 0]; let s = 0; let t = 0; let sSf = 0; let tSf = 0; const p = [0, 0, 0]; // Compute least squares plane if on automatic mode; otherwise use // normal specified or plane specified if ( model.automaticPlaneGeneration && model.origin[0] === 0 && model.origin[1] === 0 && model.origin[2] === 0 && model.point1[0] === 0 && model.point1[1] === 0 && model.point2[0] === 0 && model.point2[1] === 0 ) { if (model.automaticPlaneGeneration) { computeNormal(output); } vtkMath.normalize(model.normal); // Now project each point onto plane generating s,t texture coordinates // // Create local s-t coordinate system. Need to find the two axes on // the plane and encompassing all the points. Hence use the bounding // box as a reference. minProj = 1.0; i = 0; for (; i < 3; i++) { axis[0] = 0.0; axis[1] = 0.0; axis[2] = 0.0; axis[i] = 1.0; proj = Math.abs(vtkMath.dot(model.normal, axis)); if (proj < minProj) { minProj = proj; dir = i; } } axis[0] = 0.0; axis[1] = 0.0; axis[2] = 0.0; axis[dir] = 1.0; vtkMath.cross(model.normal, axis, tAxis); vtkMath.normalize(tAxis); vtkMath.cross(tAxis, model.normal, sAxis); // Construct projection matrices // // Arrange s-t axes so that parametric location of points will fall // between s_range and t_range. Simplest to do by projecting maximum // corner of bounding box unto plane and backing out scale factors. // const bounds = output.getBounds(); for (i = 0; i < 3; i++) { axis[i] = bounds[2 * i + 1] - bounds[2 * i]; } s = vtkMath.dot(sAxis, axis); t = vtkMath.dot(tAxis, axis); sSf = (model.sRange[1] - model.sRange[0]) / s; tSf = (model.tRange[1] - model.tRange[0]) / t; // Now can loop over all points, computing parametric coordinates. for (i = 0; i < nbPoints; i++) { output.getPoints().getPoint(i, p); for (j = 0; j < 3; j++) { axis[j] = p[j] - bounds[2 * j]; } tcoordsData.push(model.sRange[0] + vtkMath.dot(sAxis, axis) * sSf); tcoordsData.push(model.tRange[0] + vtkMath.dot(tAxis, axis) * tSf); } } else { let num = 0; // compute axes for (i = 0; i < 3; i++) { sAxis[i] = model.point1[i] - model.origin[i]; tAxis[i] = model.point2[i] - model.origin[i]; } let sDenom = vtkMath.dot(sAxis, sAxis); let tDenom = vtkMath.dot(tAxis, tAxis); Iif (sDenom === 0.0 || tDenom === 0.0) { vtkErrorMacro('Bad plane definition'); sDenom = 1.0; tDenom = 1.0; } // compute s-t coordinates for (i = 0; i < nbPoints; i++) { output.getPoints().getPoint(i, p); for (j = 0; j < 3; j++) { axis[j] = p[j] - model.origin[j]; } // s-coordinate num = sAxis[0] * axis[0] + sAxis[1] * axis[1] + sAxis[2] * axis[2]; tcoordsData.push(num / sDenom); // t-coordinate num = tAxis[0] * axis[0] + tAxis[1] * axis[1] + tAxis[2] * axis[2]; tcoordsData.push(num / tDenom); } } const tCoords = vtkDataArray.newInstance({ name: 'Texture Coordinates', numberOfComponents: 2, size: nbPoints, values: tcoordsData, }); output.getPointData().setTCoords(tCoords); // Update output outData[0] = output; }; } // ---------------------------------------------------------------------------- // Object factory // ---------------------------------------------------------------------------- const DEFAULT_VALUES = { origin: [0, 0, 0], point1: [0, 0, 0], point2: [0, 0, 0], normal: [0, 0, 0], sRange: [0, 1], tRange: [0, 1], automaticPlaneGeneration: 1, }; // ---------------------------------------------------------------------------- export function extend(publicAPI, model, initialValues = {}) { Object.assign(model, DEFAULT_VALUES, initialValues); // Build VTK API macro.obj(publicAPI, model); macro.setGetArray( publicAPI, model, ['origin', 'point1', 'point2', 'normal'], 3 ); macro.setGetArray(publicAPI, model, ['sRange', 'tRange'], 2); macro.setGet(publicAPI, model, ['automaticPlaneGeneration']); macro.algo(publicAPI, model, 1, 1); vtkTextureMapToPlane(publicAPI, model); } // ---------------------------------------------------------------------------- export const newInstance = macro.newInstance(extend, 'vtkTextureMapToPlane'); // ---------------------------------------------------------------------------- export default { newInstance, extend }; |