Sha256: a72fa01ba861815945e35839a621a9787c1ef4e9632f5caba51e883eaeb5408f

Contents?: true

Size: 591 Bytes

Versions: 11

Compression:

Stored size: 591 Bytes

Contents

# Export for PFTrack .2dt files for version 5
class Tracksperanto::Export::PFTrack5 < Tracksperanto::Export::PFTrack4
    
    def self.desc_and_extension
      "pftrack_v5.2dt"
    end
    
    def self.human_name
      "PFTrack v5 .2dt file"
    end
    
    def end_tracker_segment
      @io.write("\n\n")
      @io.puts(@tracker_name.inspect) # autoquotes
      @io.puts("Primary".inspect) # For primary/secondary cam in stereo pair
      @io.puts(@frame_count)
      
      @tracker_io.rewind
      @io.write(@tracker_io.read) until @tracker_io.eof?
      @tracker_io.close!
    end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
tracksperanto-1.9.9 lib/export/pftrack_5.rb
tracksperanto-1.9.8 lib/export/pftrack_5.rb
tracksperanto-1.9.6 lib/export/pftrack_5.rb
tracksperanto-1.9.5 lib/export/pftrack_5.rb
tracksperanto-1.9.4 lib/export/pftrack_5.rb
tracksperanto-1.9.3 lib/export/pftrack_5.rb
tracksperanto-1.9.2 lib/export/pftrack_5.rb
tracksperanto-1.9.1 lib/export/pftrack_5.rb
tracksperanto-1.9.0 lib/export/pftrack_5.rb
tracksperanto-1.8.4 lib/export/pftrack_5.rb
tracksperanto-1.8.2 lib/export/pftrack_5.rb