CreateSegmentAngle {LearnGeom}R Documentation

Creates a matrix that represents the segment that starts from a point with certain length and angle

Description

DrawSegment plots the segment that connects two points in a previously generated coordinate plane

Usage

CreateSegmentAngle(P, angle, l)

Arguments

P

Vector containing the xy-coordinates of the point

angle

Angle in degrees (0-360) for the segment

l

Positive number that indicates the length for the segment

Value

Returns a matrix which contains the points that determine the extremes of the segment

Examples

x_min <- -5
x_max <- 5
y_min <- -5
y_max <- 5
CoordinatePlane(x_min, x_max, y_min, y_max)
P <- c(0,0)
angle <- 30
l <- 1
Segment <- CreateSegmentAngle(P, angle, l)
Draw(Segment, "black")

[Package LearnGeom version 1.5 Index]