uk.ac.leeds.ccg.v3d.io.V3D_Files Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of agdt-java-vector3d Show documentation
Show all versions of agdt-java-vector3d Show documentation
A Java Library for handling 3D spatial vector data.
/*
* Copyright 2019 Andy Turner, University of Leeds.
*
* 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.
*/
package uk.ac.leeds.ccg.v3d.io;
import java.io.IOException;
import java.nio.file.Paths;
import uk.ac.leeds.ccg.generic.io.Generic_Defaults;
import uk.ac.leeds.ccg.generic.io.Generic_Files;
import uk.ac.leeds.ccg.v3d.core.V3D_Strings;
/**
* Vector Files.
*
* @author Andy Turner
* @version 1.0.0
*/
public class V3D_Files extends Generic_Files {
/**
* Creates a new instance.
*
* @throws IOException If encountered.
*/
public V3D_Files() throws IOException {
this(new Generic_Defaults(Paths.get(System.getProperty("user.home"),
V3D_Strings.s_v3d)));
}
/**
* Creates a new instance using {@code d}.
*
* @param d This contains details of the directory which will be used.
* @throws IOException If encountered.
*/
public V3D_Files(Generic_Defaults d) throws IOException {
super(d);
}
}