We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28c62d3 commit 8144ddcCopy full SHA for 8144ddc
src/main/java/com/thealgorithms/maths/VectorCrossProduct.java
@@ -55,14 +55,14 @@ public class VectorCrossProduct {
55
/**
56
* constructor, initialises Vector with given Direction Ratios
57
*
58
- * @param x set to x
59
- * @param y set to y
60
- * @param z set to z
+ * @param vectorX set to x
+ * @param vectorY set to y
+ * @param vectorZ set to z
61
*/
62
- VectorCrossProduct(int x, int y, int z) {
63
- x = x;
64
- y = y;
65
- z = z;
+ VectorCrossProduct(int vectorX, int vectorY, int vectorZ) {
+ x = vectorX;
+ y = vectorY;
+ z = vectorZ;
66
}
67
68
0 commit comments