Class: When::Coordinates::CalendarBorder
- Inherits:
-
Border
- Object
- BasicTypes::Object
- Border
- When::Coordinates::CalendarBorder
- Defined in:
- lib/when_exe/coordinates.rb
Overview
基準暦法の新年による境界
Constant Summary
Constants included from Namespace
Namespace::DC, Namespace::DCQ, Namespace::DCT, Namespace::FOAF, Namespace::OWL, Namespace::RDF, Namespace::RDFC, Namespace::RDFS, Namespace::RSS, Namespace::XSD
Instance Attribute Summary
Attributes inherited from BasicTypes::Object
Attributes included from Parts::Resource
#child, #keys, #locale, #namespace
Instance Method Summary collapse
Methods inherited from Border
Methods included from Parts::Resource
#[], #^, _instance, _setup_, _setup_info, base_uri, #each, #enum_for, #hierarchy, #include?, #included?, #iri, #leaf?, #m17n, #map, #parent, #registered?, root_dir
Methods included from Parts::Resource::Pool
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class When::Parts::Resource
Instance Method Details
#border(date = [], frame = nil) ⇒ Array<Numeric>
境界の取得
2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 |
# File 'lib/when_exe/coordinates.rb', line 2001 def border(date=[], frame=nil) last = date.length-1 return @border if last<0 args = date.dup << {:frame=>@engine} args[0] += frame.origin_of_MSC + @border[last] * 1 + (frame.epoch_in_CE - @engine.epoch_in_CE) b_date = frame._encode(frame._number_to_coordinates(When.tm_pos(*args).to_i), nil) branch = @border[last] * 0 b_date[last] = When::Coordinates::Pair.new(date[last] * 1, branch) return b_date end |