1 // Copyright ©2017 The Gonum Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 //go:build !minimal 6 // +build !minimal 7 8 package plot // import "gonum.org/v1/plot" 9 10 import ( 11 _ "gonum.org/v1/plot/vg/vgeps" 12 _ "gonum.org/v1/plot/vg/vgimg" 13 _ "gonum.org/v1/plot/vg/vgpdf" 14 _ "gonum.org/v1/plot/vg/vgsvg" 15 _ "gonum.org/v1/plot/vg/vgtex" 16 ) 17