Imports System.Drawing Imports System.Drawing.Drawing2D Imports System.Windows.Forms Public Class Form1 Protected Overrides Sub OnPaint(ByVal e As PaintEventArgs) Dim G As System.Drawing.Graphics = Graphics.FromHwnd(Me.Handle) ' 핸들입력 Dim points(3) As System.Drawing.Point points(0) = New Point(120, 60) 'Top Left of Trapezoid points(1) = New Point(180, 60) 'Top Right of ..