Difference between revisions of "Get Extent"

From PyMOLWiki
Jump to navigation Jump to search
 
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
===DESCRIPTION===
+
 
+
'''get_extent''' returns the minimum and maximum XYZ coordinates of a selection as an array:
  "get_extent" returns the minimum and maximum XYZ coordinates of a
+
<pre>[ [ min-X , min-Y , min-Z ],[ max-X, max-Y , max-Z ]]</pre>
  selection as an array:
+
 
    [ [ min-X , min-Y , min-Z ],[ max-X, max-Y , max-Z ]]
+
Typing this command returns the coordinates for all atoms. To return the coordinates of the default selection type:
+
 
 +
<pre>get_extent sele</pre>
 +
 
 
===PYMOL API===
 
===PYMOL API===
<source lang="python">
+
<source lang="python">
  cmd.get_extent(string selection="(all)", state=0 )  
+
cmd.get_extent(string selection="(all)", state=0 )
</source>
+
</source>
  
[[Category:Commands|get_extent]]
+
[[Category:Commands|Get Extent]]
 +
[[Category:States|Get Extent]]

Latest revision as of 14:30, 17 November 2009

get_extent returns the minimum and maximum XYZ coordinates of a selection as an array:

[ [ min-X , min-Y , min-Z ],[ max-X, max-Y , max-Z ]]

Typing this command returns the coordinates for all atoms. To return the coordinates of the default selection type:

get_extent sele

PYMOL API

cmd.get_extent(string selection="(all)", state=0 )