Method: SkippyLib::Resource.vector_path
- Defined in:
- modules/resource.rb
.vector_path(path) ⇒ String
34 35 36 37 38 |
# File 'modules/resource.rb', line 34 def self.vector_path(path) dir = File.dirname(path) basename = File.basename(path, '.*') File.join(dir, "#{basename}.#{VECTOR_FILETYPE}") end |