Skip to content

Commit 1a70dbc

Browse files
author
Scott Murray
committed
Removed web ref for PVector div() and mult()
1 parent bcee0b2 commit 1a70dbc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

core/src/processing/core/PVector.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -544,6 +544,7 @@ static public PVector sub(PVector v1, PVector v2, PVector target) {
544544
* @usage web_application
545545
* @param n the number to multiply with the vector
546546
* @brief Multiply a vector by a scalar or one vector by another
547+
* @nowebref
547548
*/
548549
public void mult(float n) {
549550
x *= n;
@@ -554,6 +555,7 @@ public void mult(float n) {
554555

555556
/**
556557
* @param v the vector to multiply by the scalar
558+
* @nowebref
557559
*/
558560
static public PVector mult(PVector v, float n) {
559561
return mult(v, n, null);
@@ -563,6 +565,7 @@ static public PVector mult(PVector v, float n) {
563565
/**
564566
* Multiply a vector by a scalar, and write the result into a target PVector.
565567
* @param target PVector to store the result
568+
* @nowebref
566569
*/
567570
static public PVector mult(PVector v, float n, PVector target) {
568571
if (target == null) {
@@ -586,6 +589,7 @@ static public PVector mult(PVector v, float n, PVector target) {
586589
* @usage web_application
587590
* @param n the value to divide by
588591
* @brief Divide a vector by a scalar or one vector by another
592+
* @nowebref
589593
*/
590594
public void div(float n) {
591595
x /= n;
@@ -599,6 +603,7 @@ public void div(float n) {
599603
* @param v any variable of type PVector
600604
* @param n the number to divide with the vector
601605
* @return a new vector that is v1 / n
606+
* @nowebref
602607
*/
603608
static public PVector div(PVector v, float n) {
604609
return div(v, n, null);
@@ -609,6 +614,7 @@ static public PVector div(PVector v, float n) {
609614
* @param v any variable of type PVector
610615
* @param n the number to divide with the vector
611616
* @param target PVector to store the result
617+
* @nowebref
612618
*/
613619
static public PVector div(PVector v, float n, PVector target) {
614620
if (target == null) {

0 commit comments

Comments
 (0)