Could not authenticate you from OauthOpendesktop because "Can't verify csrf token authenticity.".
Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
module Fox
class FXExtentf
# Lower corner of this extent (an FXVec2f instance).
attr_reader :lower
# Upper corner of this extent (an FXVec2f instance).
attr_reader :upper
# Default constructor
def initialize; end
# Copy constructor
def initialize(ext); end
# Initialize from two vectors (where _lo_ and _hi_ are two
# FXVec2f instances).
def initialize(lo, hi); end
# Initialize from four numbers
def initialize(xlo, xhi, ylo, yhi); end
# Indexing with 0..1 (returns an FXVec2f instance).
def [](i); end
# Return width of box
def width; end
# Return height of box
def height; end
# Return length of longest side
def longest; end
# Return length of shortest side
def shortest; end
# Return length of diagonal
def diameter; end
# Return radius of box
def radius; end
# Compute diagonal vector (returns an FXVec2f)
def diagonal; end
# Return center of box (as an FXVec2f)
def center; end
# Return +true+ if empty
def empty?; end
# Return +true+ if box contains point (_x_, _y_)
def contains?(x, y); end
# Return +true+ if box contains point _p_ (an FXVec2f instance)
def contains?(p); end
# Return +true+ if box properly contains another box (where _ext_ is
# another FXExtentf instance).
def contains?(ext); end
# Include point (_x_, _y_) and return a reference to self.
def include!(x, y); end
# Include point _v_ (an FXVec2f instance) and return a reference to self.
def include!(v); end
# Include given range into extent (where _ext_ is another FXExtentf instance)
# and return a reference to self.
def include!(ext); end
# Return +true+ if this extent's bounds overlap with _other_ extent's bounds.
def overlap?(other); end
# Return corner number 0, 1, 2 or 3 (as a FXVec2f instance).
def corner(c); end
# Return a new FXExtentf that is the union of this extent and _other_.
def unite_with(other); end
# Return a new FXExtentf that is the intersection of this extent and _other_.
def intersect_with(other); end
end
end