Advertisement
xunilk

QgsPoint Class (PyQGIS)

Aug 5th, 2014
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.93 KB | None | 0 0
  1. Python 2.7.4 (default, Apr 6 2013, 19:54:46) [MSC v.1500 32 bit (Intel)] on zeito
  2. ## Type help(iface) for more info and list of methods.
  3. help(QgsPoint)
  4. Help on class QgsPoint in module qgis.core:
  5.  
  6. class QgsPoint(sip.wrapper)
  7. | QgsPoint()
  8. | QgsPoint(QgsPoint)
  9. | QgsPoint(float, float)
  10. |
  11. | Method resolution order:
  12. | QgsPoint
  13. | sip.wrapper
  14. | sip.simplewrapper
  15. | __builtin__.object
  16. |
  17. | Methods defined here:
  18. |
  19. | __eq__(...)
  20. | x.__eq__(y) <==> x==y
  21. |
  22. | __ge__(...)
  23. | x.__ge__(y) <==> x>=y
  24. |
  25. | __getitem__(...)
  26. | x.__getitem__(y) <==> x[y]
  27. |
  28. | __gt__(...)
  29. | x.__gt__(y) <==> x>y
  30. |
  31. | __hash__(...)
  32. | x.__hash__() <==> hash(x)
  33. |
  34. | __le__(...)
  35. | x.__le__(y) <==> x<=y
  36. |
  37. | __len__(...)
  38. | x.__len__() <==> len(x)
  39. |
  40. | __lt__(...)
  41. | x.__lt__(y) <==> x<y
  42. |
  43. | __ne__(...)
  44. | x.__ne__(y) <==> x!=y
  45. |
  46. | __repr__(...)
  47. | x.__repr__() <==> repr(x)
  48. |
  49. | azimuth(...)
  50. | QgsPoint.azimuth(QgsPoint) -> float
  51. |
  52. | multiply(...)
  53. | QgsPoint.multiply(float)
  54. |
  55. | onSegment(...)
  56. | QgsPoint.onSegment(QgsPoint, QgsPoint) -> int
  57. |
  58. | set(...)
  59. | QgsPoint.set(float, float)
  60. |
  61. | setX(...)
  62. | QgsPoint.setX(float)
  63. |
  64. | setY(...)
  65. | QgsPoint.setY(float)
  66. |
  67. | sqrDist(...)
  68. | QgsPoint.sqrDist(float, float) -> float
  69. | QgsPoint.sqrDist(QgsPoint) -> float
  70. |
  71. | sqrDistToSegment(...)
  72. | QgsPoint.sqrDistToSegment(float, float, float, float, float epsilon=DEFAULT_SEGMENT_EPSILON) -> (float, QgsPoint)
  73. |
  74. | toDegreesMinutes(...)
  75. | QgsPoint.toDegreesMinutes(int) -> QString
  76. |
  77. | toDegreesMinutesSeconds(...)
  78. | QgsPoint.toDegreesMinutesSeconds(int) -> QString
  79. |
  80. | toString(...)
  81. | QgsPoint.toString() -> QString
  82. | QgsPoint.toString(int) -> QString
  83. |
  84. | wellKnownText(...)
  85. | QgsPoint.wellKnownText() -> QString
  86. |
  87. | x(...)
  88. | QgsPoint.x() -> float
  89. |
  90. | y(...)
  91. | QgsPoint.y() -> float
  92. |
  93. | ----------------------------------------------------------------------
  94. | Data descriptors defined here:
  95. |
  96. | __weakref__
  97. | list of weak references to the object (if defined)
  98. |
  99. | ----------------------------------------------------------------------
  100. | Methods inherited from sip.simplewrapper:
  101. |
  102. | __init__(...)
  103. | x.__init__(...) initializes x; see help(type(x)) for signature
  104. |
  105. | ----------------------------------------------------------------------
  106. | Data descriptors inherited from sip.simplewrapper:
  107. |
  108. | __dict__
  109. |
  110. | ----------------------------------------------------------------------
  111. | Data and other attributes inherited from sip.simplewrapper:
  112. |
  113. | __new__ = <built-in method __new__ of sip.wrappertype object>
  114. | T.__new__(S, ...) -> a new object with type S, a subtype of T
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement