/usr/share/SuperCollider/HelpSource/Classes/Point.schelp is in supercollider-common 1:3.8.0~repack-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 86 87 88 | class:: Point
summary:: Cartesian point
related:: Classes/Polar, Classes/Complex
categories:: Geometry
description::
Defines a point on the Cartesian plane.
classmethods::
method::new
Defines a new point.
instancemethods::
subsection:: Accessing
method::x
Get or set the x coordinate value.
method::y
Get or set the y coordinate value.
method::set
Sets the point x and y values.
subsection:: Testing
method::==
Answers a Boolean whether the receiver equals the argument.
method::hash
Returns a hash value for the receiver.
subsection:: Math
method::+
Addition.
method::-
Subtraction.
method::*
Multiplication.
method::/
Division.
method::translate
Addition by a Point.
method::scale
Multiplication by a Point.
method::rotate
Rotation about the origin by the angle given in radians.
method::abs
Absolute value of the point.
method::rho
Return the polar coordinate radius of the receiver.
method::theta
Return the polar coordinate angle of the receiver.
method::dist
Return the distance from the receiver to aPoint.
method::transpose
Return a Point whose x and y coordinates are swapped.
method::round
Round the coordinate values to a multiple of quantum.
method::trunc
Truncate the coordinate values to a multiple of quantum.
subsection:: Conversion
method::asPoint
Returns the receiver.
method::asComplex
Returns a complex number with x as the real part and y as the imaginary part.
method::asString
Return a string representing the receiver.
|