• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript geom.vec3类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中neuroglancer/util/geom.vec3的典型用法代码示例。如果您正苦于以下问题:TypeScript vec3类的具体用法?TypeScript vec3怎么用?TypeScript vec3使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了vec3类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: parseStackInfo

function parseStackInfo(obj: any): StackInfo|undefined {
  verifyObject(obj);

  let state = verifyObjectProperty(obj, 'state', verifyString);

  let channels: string[] = [];
  let lowerVoxelBound: vec3 = vec3.create();
  let upperVoxelBound: vec3 = vec3.create();

  if (VALID_STACK_STATES.has(state)) {
    let stackStatsObj = verifyObjectProperty(obj, 'stats', verifyObject);

    lowerVoxelBound = parseLowerVoxelBounds(stackStatsObj);
    upperVoxelBound = parseUpperVoxelBounds(stackStatsObj);

    if (stackStatsObj.hasOwnProperty('channelNames')) {
      channels = parseChannelNames(stackStatsObj);
    }
  } else if (PARTIAL_STACK_STATES.has(state)) {
    // Stacks in LOADING state will not have a 'stats' object.
    // Values will be populated from command arguments in MultiscaleVolumeChunkSource()
  } else {
    return undefined;
  }

  let voxelResolution: vec3 = verifyObjectProperty(obj, 'currentVersion', parseStackVersionInfo);

  let project: string = verifyObjectProperty(obj, 'stackId', parseStackProject);

  return {lowerVoxelBound, upperVoxelBound, voxelResolution, project, channels};
}
开发者ID:google,项目名称:neuroglancer,代码行数:31,代码来源:frontend.ts


示例2: it

 it('parseRGBColorSpecification works', () => {
   expect(parseRGBColorSpecification('white')).toEqual(vec3.fromValues(1, 1, 1));
   expect(parseRGBColorSpecification('black')).toEqual(vec3.fromValues(0, 0, 0));
   expect(parseRGBColorSpecification('red')).toEqual(vec3.fromValues(1, 0, 0));
   expect(parseRGBColorSpecification('lime')).toEqual(vec3.fromValues(0, 1, 0));
   expect(parseRGBColorSpecification('blue')).toEqual(vec3.fromValues(0, 0, 1));
 });
开发者ID:google,项目名称:neuroglancer,代码行数:7,代码来源:color.spec.ts


示例3: stableStringify

 return this.scales.map(scaleInfo => {
   return Array
       .from(VolumeChunkSpecification.getDefaults({
         voxelSize: scaleInfo.resolution,
         dataType: this.dataType,
         numChannels: this.numChannels,
         lowerVoxelBound: scaleInfo.voxelOffset,
         upperVoxelBound: vec3.add(vec3.create(), scaleInfo.voxelOffset, scaleInfo.size),
         volumeType: this.volumeType,
         chunkDataSizes: scaleInfo.chunkSizes,
         compressedSegmentationBlockSize: scaleInfo.compressedSegmentationBlockSize
       }))
       .map(spec => {
         let path = `${this.path}/${scaleInfo.key}`;
         let cacheKey = stableStringify({
           'spec': spec,
           'baseUrls': this.baseUrls,
           'path': path,
           'encoding': scaleInfo.encoding
         });
         return chunkManager.getChunkSource(
             VolumeChunkSource, cacheKey,
             () => new VolumeChunkSource(
                 chunkManager, spec, this.baseUrls, path, scaleInfo.encoding));
       });
 });
开发者ID:j6k4m8,项目名称:neuroglancer,代码行数:26,代码来源:frontend.ts


示例4:

 return this.scales.map(scaleInfo => {
   return VolumeChunkSpecification
       .getDefaults({
         voxelSize: scaleInfo.resolution,
         dataType: this.dataType,
         numChannels: this.numChannels,
         transform: mat4.fromTranslation(
             mat4.create(),
             vec3.multiply(vec3.create(), scaleInfo.resolution, scaleInfo.voxelOffset)),
         upperVoxelBound: scaleInfo.size,
         volumeType: this.volumeType,
         chunkDataSizes: scaleInfo.chunkSizes,
         baseVoxelOffset: scaleInfo.voxelOffset,
         compressedSegmentationBlockSize: scaleInfo.compressedSegmentationBlockSize,
         volumeSourceOptions,
       })
       .map(spec => this.chunkManager.getChunkSource(PrecomputedVolumeChunkSource, {
         spec,
         parameters: {
           'baseUrls': this.baseUrls,
           'path': `${this.path}/${scaleInfo.key}`,
           'encoding': scaleInfo.encoding
         }
       }));
 });
开发者ID:google,项目名称:neuroglancer,代码行数:25,代码来源:frontend.ts


示例5: constructor

 constructor (response: any) {
   if (typeof response !== 'object' || Array.isArray(response)) {
     throw new Error('Failed to parse volume metadata.');
   }
   this.resolution = parseFiniteVec(vec3.create(), response['resolution']);
   this.voxelOffset = parseIntVec(vec3.create(), response['voxel_offset']);
   this.size = parseIntVec(vec3.create(), response['size']);
   this.chunkSizes = parseArray(response['chunk_sizes'], x => parseFiniteVec(vec3.create(), x));
   if (this.chunkSizes.length === 0) {
     throw new Error('No chunk sizes specified.');
   }
   let encodingStr = response['encoding'];
   let encoding = serverChunkEncodings.get(encodingStr);
   if (encoding === undefined) {
     throw new Error(`Invalid chunk encoding: ${JSON.stringify(encodingStr)}`);
   }
   this.encoding = encoding;
   if (encoding === VolumeChunkEncoding.COMPRESSED_SEGMENTATION) {
     this.compressedSegmentationBlockSize = parseIntVec(vec3.create(), response['compressed_segmentation_block_size']);
   }
   this.key = response['key'];
   if (typeof this.key !== 'string') {
     throw new Error('No key specified.');
   }
 }
开发者ID:j6k4m8,项目名称:neuroglancer,代码行数:25,代码来源:frontend.ts


示例6: withDefaultCompression

 /**
  * Returns a VolumeChunkSpecification with default compression specified if suitable for the
  * volumeType.
  */
 static withDefaultCompression(options: VolumeChunkSpecificationDefaultCompressionOptions&
                               VolumeChunkSpecificationOptions&
                               VolumeChunkSpecificationVolumeSourceOptions) {
   let {
     compressedSegmentationBlockSize,
     dataType,
     voxelSize,
     transform,
     lowerVoxelBound,
     upperVoxelBound
   } = options;
   transform = getCombinedTransform(transform, options.volumeSourceOptions);
   if (compressedSegmentationBlockSize === undefined &&
       options.volumeType === VolumeType.SEGMENTATION &&
       (dataType === DataType.UINT32 || dataType === DataType.UINT64)) {
     compressedSegmentationBlockSize = getNearIsotropicBlockSize({
       voxelSize,
       transform,
       lowerVoxelBound,
       upperVoxelBound,
       maxVoxelsPerChunkLog2: 9,
       maxBlockSize: vec3.min(
           vec3.create(), options.chunkDataSize,
           options.maxCompressedSegmentationBlockSize || kInfinityVec),
     });
   }
   return new VolumeChunkSpecification(
       Object.assign({}, options, {compressedSegmentationBlockSize, transform}));
 }
开发者ID:google,项目名称:neuroglancer,代码行数:33,代码来源:base.ts


示例7: getSources

  getSources(vectorGraphicsSourceOptions: VectorGraphicsSourceOptions) {
    const voxelSize = this.stackInfo.voxelResolution;
    const chunkSize = vec3.subtract(
        vec3.create(), this.stackInfo.upperVoxelBound, this.stackInfo.lowerVoxelBound);
    vec3.multiply(chunkSize, chunkSize, voxelSize);
    chunkSize[2] = voxelSize[2];

    const spec = VectorGraphicsChunkSpecification.make({
      voxelSize,
      chunkSize,
      lowerChunkBound: vec3.fromValues(0, 0, this.stackInfo.lowerVoxelBound[2]),
      upperChunkBound: vec3.fromValues(1, 1, this.stackInfo.upperVoxelBound[2]),
      vectorGraphicsSourceOptions
    });
    const source = this.chunkManager.getChunkSource(PointMatchSource, {
      spec,
      parameters: {
        'baseUrls': this.baseUrls,
        'owner': this.ownerInfo.owner,
        'project': this.stackInfo.project,
        'stack': this.stack,
        'encoding': 'points',
        'matchCollection': this.matchCollection,
        'zoffset': this.zoffset
      }
    });

    return [[source]];
  }
开发者ID:google,项目名称:neuroglancer,代码行数:29,代码来源:frontend.ts


示例8: getStaticAnnotations

 getStaticAnnotations() {
   const baseScale = this.scales[0];
   const annotationSet =
     new AnnotationSource(mat4.fromScaling(mat4.create(), baseScale.resolution));
   annotationSet.readonly = true;
   annotationSet.add(makeDataBoundsBoundingBox(
       baseScale.voxelOffset, vec3.add(vec3.create(), baseScale.voxelOffset, baseScale.size)));
   return annotationSet;
 }
开发者ID:google,项目名称:neuroglancer,代码行数:9,代码来源:frontend.ts


示例9: constructor

  constructor(options: VolumeChunkSpecificationOptions) {
    let {
      lowerVoxelBound = kZeroVec,
      upperVoxelBound,
      chunkDataSize,
      voxelSize,
      transform,
      baseVoxelOffset = kZeroVec
    } = options;
    let {
      lowerClipBound = vec3.multiply(vec3.create(), voxelSize, lowerVoxelBound),
      upperClipBound = vec3.multiply(vec3.create(), voxelSize, upperVoxelBound)
    } = options;
    const chunkSize = vec3.multiply(vec3.create(), chunkDataSize, voxelSize);
    let lowerChunkBound = vec3.create();
    let upperChunkBound = vec3.create();
    for (let i = 0; i < 3; ++i) {
      lowerChunkBound[i] = Math.floor(lowerVoxelBound[i] / chunkDataSize[i]);
      upperChunkBound[i] = Math.floor((upperVoxelBound[i] - 1) / chunkDataSize[i] + 1);
    }
    super({voxelSize, transform, lowerChunkBound, upperChunkBound, chunkSize});
    this.baseVoxelOffset = baseVoxelOffset;
    this.lowerClipBound = lowerClipBound;
    this.upperClipBound = upperClipBound;
    this.lowerVoxelBound = lowerVoxelBound;
    this.upperVoxelBound = upperVoxelBound;
    this.chunkDataSize = chunkDataSize;

    let dataType = this.dataType = options.dataType;
    let numChannels = this.numChannels = options.numChannels;

    this.chunkBytes = prod3(chunkDataSize) * DATA_TYPE_BYTES[dataType] * numChannels;

    this.compressedSegmentationBlockSize = options.compressedSegmentationBlockSize;
  }
开发者ID:google,项目名称:neuroglancer,代码行数:35,代码来源:base.ts



注:本文中的neuroglancer/util/geom.vec3类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript geom.vec4类代码示例发布时间:2022-05-25
下一篇:
TypeScript geom.mat4类代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap