Java Geometry Algorithm newZeroPoint()

Here you can find the source of newZeroPoint()

Description

new Zero Point

License

Apache License

Declaration

public static Point2D newZeroPoint() 

Method Source Code


//package com.java2s;
/*/*from   w w w  .  ja  v  a2  s . c om*/
 * Copyright 2010 The Depan Project Authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.awt.geom.Point2D;

public class Main {
    public static Point2D newZeroPoint() {
        return newPoint2D(0.0, 0.0);
    }

    public static Point2D newPoint2D(double xPos, double yPos) {
        return new Point2D.Float((float) xPos, (float) yPos);
    }
}

Related

  1. manhattanDistance(Point a, Point b)
  2. mirrorMoveVertically(Point move, int size)
  3. nearestColinearPoint(final double x1, final double y1, final double x2, final double y2, double x, double y)
  4. nearestColinearPoint(final Line2D segment, final Point2D point)
  5. nearestPointOnLine(Line2D l, Point2D p, boolean clampToSegment, Point2D dest)
  6. oneThirdPoint(@Nonnull Point2D pA, @Nonnull Point2D pB)
  7. parabolaByFocusAndDirectrix(Point2D.Double focus, double directrix)
  8. parameterizeCurve(Point[] coefficients, Point startPoint, Point endPoint, Point controlPoint1, Point controlPoint2)
  9. perpendicular(Point a, Point z, double aDist, double size, boolean clockwise)