タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

javascriptとbinaryに関するy-kawazのブックマーク (1)

  • Benvie/reified · GitHub

    var Point = new StructType('Point', { x: UInt32, y: UInt32 }); var RGB = new StructType('RGB', { r: UInt8, g: UInt8, b: UInt8 }) var Pixel = new StructType('Pixel', { point: Point, color: RGB }) var Triangle = new ArrayType('Triangle', Pixel, 3) //--> ‹Triangle›(33b) [ 3 ‹Pixel›(11b) | point: ‹Point›(8b) { x: ‹UInt32› | y: ‹UInt32› } | color: ‹RGB›(3b) { r: ‹UInt8› | g: ‹UInt8› | b: ‹UInt8› } ] va

    y-kawaz
    y-kawaz 2012/03/21
    Nodeでバイナリを扱うためのAPI。構造体も作れる。
  • 1